AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Setup

skill-vpaivag-skills-setup · by vpaivag

Configure where plan suites live and whether the plans directory is gitignored. Writes `.claude/plans-config.json` with `plansDir` (default `.claude/plans`) and `gitignore` (default `true`) keys. Existing planning skills (`/intake`, `/deep-plan`, `/simple-plan`, `/plan-tracker`, `/execute-plan`, `/review-plan`) read this config to resolve the plans directory, falling back to `.claude/plans` when…

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-vpaivag-skills-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vpaivag-skills-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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.json and (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 .gitignore lines. Only append when missing.
  • Defaults are the historical path. plansDir defaults to .claude/plans; gitignore defaults to true. Users who never run /setup get 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. If true, skills ensure plansDir is in .gitignore. If false, skills do not touch .gitignore.

Phases

Phase 1 — Detect existing config

Read .claude/plans-config.json if it exists. If present:

  1. Show the current values.
  2. Ask via AskUserQuestion: "Config already exists. Reconfigure or keep as-is?" with options "Keep" (Recommended) and "Reconfigure".
  3. If "Keep", end the turn after printing the current config.
  4. 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.

  1. Plans directory. Options: .claude/plans (Recommended), Other (user types a path). Accept absolute or relative paths.
  2. Gitignore the plans directory? Options: Yes (Recommended), No.

Phase 3 — Write config

  1. Create .claude/ if it does not exist.
  2. Write .claude/plans-config.json with the chosen plansDir and gitignore values.
  3. If gitignore: true:
  • If a .gitignore exists at the project root and does not already contain a line matching plansDir (with optional trailing /), append / to it.
  • If .gitignore does not exist, create it with that single line.
  1. If gitignore: false:
  • Do not modify .gitignore.
  • If .gitignore exists and already contains a line matching plansDir, print a note: "Your .gitignore still 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.json and .gitignore.
  • Never remove existing .gitignore lines.
  • 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.

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

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.