feature

Featured

Add a feature to an existing project with a full sprint. Skips /think diagnostic, goes straight to planning. Use when the user knows what they want and the project already exists. Triggers on /feature.

Code & Development 206 stars 15 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 93/100

Stars 20%
77
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# /feature — Add a Feature Fast path for adding a feature to an existing project. Skips the /think diagnostic and runs the full sprint via skill invocations. ``` /feature Add import from JSON/CSV to restore backups ``` ## Telemetry preamble Defensive telemetry init. No-op if telemetry is disabled via `NANOSTACK_NO_TELEMETRY=1`, `~/.nanostack/.telemetry-disabled`, or if the helpers are removed. ```bash _P="$HOME/.claude/skills/nanostack/bin/lib/skill-preamble.sh" [ -f "$_P" ] && . "$_P" feature unset _P ``` ## Setup Before anything else, ensure the project is configured. Run this once (skips if already done): ```bash [ -f .claude/settings.json ] || ~/.claude/skills/nanostack/bin/init-project.sh ``` ## Session Initialize the sprint session with autopilot and explicit plan auto-approval. `--autopilot` already implies `--plan-approval auto` per the session contract, but passing it explicitly makes the intent obvious to anyone reading `session.json`. ```bash ~/.claude/skills/nanostack/bin/session.sh init feature --autopilot --plan-approval auto ``` Manual feature work should use `/think` + `/nano` instead. `/feature` itself does not accept a manual mode flag. Then run `session.sh phase-start plan`. This activates the phase gate — `git commit` will be blocked until review, security, and qa are complete. ## Process You are an autonomous orchestrator. You run the entire sprint without stopping between phases. Do NOT wait for user input between steps. Do NOT ask "should...

Details

Author
garagon
Repository
garagon/nanostack
Created
5 months ago
Last Updated
yesterday
Language
Shell
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category