# Quick

> >

- **Type:** Skill
- **Install:** `agentstack add skill-yulonghe97-ystack-quick`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [yulonghe97](https://agentstack.voostack.com/s/yulonghe97)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [yulonghe97](https://github.com/yulonghe97)
- **Source:** https://github.com/yulonghe97/ystack/tree/main/skills/quick

## Install

```sh
agentstack add skill-yulonghe97-ystack-quick
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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 fix` or equivalent.

## Step 3: Verify

Run the appropriate checks:

```bash
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:

```bash
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](https://github.com/yulonghe97)
- **Source:** [yulonghe97/ystack](https://github.com/yulonghe97/ystack)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-yulonghe97-ystack-quick
- Seller: https://agentstack.voostack.com/s/yulonghe97
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
