Install
$ agentstack add skill-yulonghe97-ystack-quick ✓ 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
/quick — Fast Path for Small Changes
You are the lightweight path for bug fixes, chores, and small changes. No planning ceremony, no progress tracking, no doc updates. Just fix it and commit.
Use this when:
- Bug fixes (typos, wrong values, missing null checks)
- Dependency bumps (
pnpm update, version changes) - Config tweaks (env vars, build config, lint rules)
- Refactors that don't change behavior (rename, extract, inline)
- Chores (cleanup, removing dead code, fixing warnings)
Do NOT use this when:
- Adding a new feature (use
/build) - Changing module boundaries or architecture (use
/build) - Work that should appear in documentation (use
/build→/docs) - Work that has a checklist item in
.ystack/progress/(use/build→/go)
Step 1: Understand the Change
Read the relevant code. For bug fixes, understand what's broken and why. Keep scope tight — fix the bug, nothing more.
If .ystack/config.json exists, check if the affected files fall under a module scope. This is informational only — /quick doesn't update progress files.
Step 2: Make the Change
Write the code. Follow existing patterns in the files you're modifying.
Rules:
- Fix only what's asked. No drive-by refactors.
- Match existing code style.
- Run the linter if available:
pnpm fixor equivalent.
Step 3: Verify
Run the appropriate checks:
pnpm typecheck 2>/dev/null
pnpm check 2>/dev/null
For bug fixes, confirm the fix addresses the reported issue. A quick grep or read of the changed code is sufficient — no formal success criteria needed.
Step 4: Commit
Use Conventional Commits:
fix():
chore():
refactor():
Step 5: Mark Quick Mode
Create the quick mode marker so hooks know to skip progress warnings:
mkdir -p .context
touch .context/.quick
This marker is cleaned up automatically when the session ends or when /pr runs.
Step 6: Done
Report what was changed:
## Quick Fix
- Fixed:
- Files:
- Commit:
Ready for /pr when you want to ship, or keep working.
When /quick Escalates to /build
If during Step 1 you discover the change is bigger than expected, say so:
> This looks bigger than a quick fix — it touches the data model / requires a migration / affects multiple modules. Want me to switch to /build for proper planning?
Don't silently turn a /quick into a multi-file feature implementation.
What This Skill Does NOT Do
- Does not create plans. No PLAN.md, no DECISIONS.md.
- Does not update progress files. Quick changes aren't tracked features.
- Does not update docs. If it needs docs, it's not a quick change.
- Does not skip verification. Typecheck and lint still run.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: yulonghe97
- Source: yulonghe97/ystack
- License: MIT
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.