Install
$ agentstack add skill-jnzader-repoforge-test-compressor ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
test-compressor-fixtures
This skill covers patterns for creating fixtures to test compression passes.
Trigger: Load this skill when working with test_compressor.
Quick Reference
| Task | Pattern | |------|---------| | Create user fixture | create_user | | Get user fixture | get_user |
Critical Patterns (Summary)
- Create User Fixture: Use
create_userto set up a user for testing. - Get User Fixture: Utilize
get_userto retrieve user data for tests.
Critical Patterns (Detailed)
Create User Fixture
Use create_user to set up a user for testing compression passes in your tests.
from tests.test_compressor import create_user
user = create_user(name="Test User", email="test@example.com")
Get User Fixture
Utilize get_user to retrieve user data for tests, ensuring the user exists before running tests.
from tests.test_compressor import get_user
user = get_user(user_id=1)
When to Use
- When you need to create a user for testing compression functionality.
- When you need to retrieve user data to validate compression results.
Commands
pytest tests/test_compressor.py
Anti-Patterns
Don't: Hardcode User Data
Hardcoding user data can lead to brittle tests that fail when data changes.
# BAD
user = create_user(name="Hardcoded User", email="hardcoded@example.com")
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: JNZader
- Source: JNZader/repoforge
- License: MIT
- Homepage: https://repoforge.javierzader.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.