---
name: Nano Help
slug: nano-help
category: Writing
description: Nano Help provides a quick reference for nanostack commands and what each one does. Use it to see available workflows and how to start the right command.
github: "https://github.com/garagon/nanostack/tree/main/help"
language: Shell
stars: 204
forks: 15
install: "npx degit https://github.com/garagon/nanostack/tree/main/help ~/.claude/skills/help"
installs_to: ~/.claude/skills/help
source_path: help/SKILL.md
collection_size: 18
category_size: 1227
collection_url: "https://dirskills.com/collections/garagon/nanostack"
added: 2026-09-05T05:29:35.947Z
last_synced: 2026-09-05T05:29:35.947Z
canonical_url: "https://dirskills.com/skills/nano-help"
---

# Nano Help

Nano Help provides a quick reference for nanostack commands and what each one does. Use it to see available workflows and how to start the right command.

**Install:**

```bash
npx degit https://github.com/garagon/nanostack/tree/main/help ~/.claude/skills/help
```

## README

# /nano-help — Quick Reference

Show the user a concise overview of nanostack. No walls of text. Organized by what they want to do.

## 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" nano-help
unset _P
```

## Response

Print this directly:

```
nanostack
Make your AI agent think first.

What do you want to do?

  Start a brand new project       → /think (or /think --autopilot)
  Add to a project that exists    → /feature <what to add>
  Already wrote code, check it    → /review  (then /security, /qa)
  Ready to save / publish         → /ship
  First time using nanostack      → /nano-run
  Not sure where to start         → /think (it helps you decide)

Reference — every command:

Getting started:
  /nano-run              First-time setup. Configures your project conversationally.
  /nano-help             You are here.

The sprint:
  /think                 Challenge the scope before building.
  /nano                  Plan the implementation. Files, steps, risks.
  build                  You or the agent writes the code.
  /review                Two-pass code review. Scope drift detection.
  /security              OWASP Top 10 + STRIDE audit. Graded A-F.
  /qa                    Test it. Browser, API, CLI, or debug.
  /ship                  Create PR, verify CI, generate sprint journal.

Shortcuts:
  /think --autopilot     Full sprint. Think, plan, build, review, audit, test, ship.
  /feature <description> Add a feature to an existing project with full sprint.

After shipping:
  /compound              Save what you learned. Future sprints find it automatically.

Safety:
  /guard                 Block dangerous commands. /freeze locks edits to a scope.

Team:
  /conductor             Parallel sprints across multiple agents or terminals.

Modes (for /review, /security, /qa):
  --quick                Small changes. Only the obvious.
  --standard             Default. Normal work.
  --thorough             Auth, payments, infra. Flag everything.

Update:
  /nano-update           Pull latest version.
  /nano-doctor           Diagnose install health (deps, perms, telemetry).

github.com/garagon/nanostack
```

If the user asks about a specific skill, invoke it: use Skill tool with the skill name. Don't explain the skill yourself — let the skill's own SKILL.md handle it.

## Telemetry finalize

Before returning control:

```bash
_F="$HOME/.claude/skills/nanostack/bin/lib/skill-finalize.sh"
[ -f "$_F" ] && . "$_F" nano-help success
unset _F
```

Pass `abort` or `error` instead of `success` if help did not complete normally.
