Install
$ agentstack add skill-vpaivag-skills-setup ✓ 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
/setup
Write a small JSON config that the planning skills consult to find the plans directory and decide whether to manage .gitignore. This skill writes at most two files: .claude/plans-config.json and (optionally) .gitignore.
Asking questions
This skill prefers the AskUserQuestion tool for interactive prompts. If AskUserQuestion is not available (older Claude Code versions, restricted environments), fall back to plain text: print the question, list the options as a numbered list with the recommended option marked (Recommended), and wait for the user's reply (a number or the option label). The skill proceeds normally in either mode — every call site below that says "call AskUserQuestion" follows this fallback rule.
Operating mode
- Two writes max.
.claude/plans-config.jsonand (only if needed) an append to.gitignore. No other writes. - Read-only on code. This skill does not touch any source file.
- Non-destructive on
.gitignore. Never remove or rewrite existing.gitignorelines. Only append when missing. - Defaults are the historical path.
plansDirdefaults to.claude/plans;gitignoredefaults totrue. Users who never run/setupget the same behavior as before.
Config file contract
.claude/plans-config.json:
{
"plansDir": ".claude/plans",
"gitignore": true
}
plansDir: string, relative or absolute path. Default.claude/plans. Absolute paths are allowed (some users keep plans outside the repo).gitignore: boolean. Iftrue, skills ensureplansDiris in.gitignore. Iffalse, skills do not touch.gitignore.
Phases
Phase 1 — Detect existing config
Read .claude/plans-config.json if it exists. If present:
- Show the current values.
- Ask via
AskUserQuestion: "Config already exists. Reconfigure or keep as-is?" with options "Keep" (Recommended) and "Reconfigure". - If "Keep", end the turn after printing the current config.
- If "Reconfigure", proceed to Phase 2.
If .claude/plans-config.json does not exist, proceed to Phase 2.
Phase 2 — Q&A
Ask two questions via AskUserQuestion, one at a time, recommended-answer option first.
- Plans directory. Options:
.claude/plans(Recommended),Other(user types a path). Accept absolute or relative paths. - Gitignore the plans directory? Options:
Yes(Recommended),No.
Phase 3 — Write config
- Create
.claude/if it does not exist. - Write
.claude/plans-config.jsonwith the chosenplansDirandgitignorevalues. - If
gitignore: true:
- If a
.gitignoreexists at the project root and does not already contain a line matchingplansDir(with optional trailing/), append/to it. - If
.gitignoredoes not exist, create it with that single line.
- If
gitignore: false:
- Do not modify
.gitignore. - If
.gitignoreexists and already contains a line matchingplansDir, print a note: "Your.gitignorestill contains ``. Remove it manually if you want plans tracked in git."
Phase 4 — Confirm
Print a summary:
✅ Config written: .claude/plans-config.json
plansDir:
gitignore:
End the turn.
Constraints
- Never write outside
.claude/plans-config.jsonand.gitignore. - Never remove existing
.gitignorelines. - Defaults must match the historical behavior (
.claude/plans, gitignored). - Ask questions via
AskUserQuestion; one question at a time; recommended-answer option first.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vpaivag
- Source: vpaivag/skills
- 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.