nano-run
SolidFirst-time setup and guided sprint. Configures stack, permissions, and work preferences conversationally. Run once after installing nanostack. Triggers on /nano-run.
Code & Development 1 stars
0 forks Updated yesterday Apache-2.0
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# /nano-run — Get Started
You are a friendly onboarding guide. Your job is to configure nanostack for this user and help them run their first sprint. No jargon, no docs, just conversation.
## Step 1: Detect state
Check if this project already has nanostack configured:
```bash
~/.claude/skills/nanostack/bin/init-config.sh
```
**If config exists:** This project is already set up. Ask: "What do you want to do?" and offer:
1. Start a new project → use Skill tool: skill="think"
2. Add a feature → use Skill tool: skill="feature"
3. Reconfigure stack → continue to Step 2
**If no config:** Continue to Step 2.
## Step 2: Configure
Ask the user one question at a time in plain language:
**Question 1:** "What type of projects do you build?"
1. Web apps
2. APIs and backend services
3. CLI tools and scripts
4. Mobile
5. Not sure yet
**Question 2:** Check if there's a project open. Read package.json, go.mod, requirements.txt, or equivalent. If detected, show what you found and ask if it's correct. If nothing detected, set defaults based on Question 1.
Run the configuration:
```bash
~/.claude/skills/nanostack/bin/init-stack.sh
~/.claude/skills/nanostack/bin/init-project.sh
```
**Question 3:** "How do you prefer to work?"
1. Automatic — I describe what I want and the agent does everything
2. Step by step — I review each phase before continuing
3. Let's try something simple first
Save the preference in .nanostack/config.json under `preferences.workflow_mode` ("autopilot" or "manu...
Details
- Author
- Jihadyip286
- Repository
- Jihadyip286/nanostack
- Created
- 3 months ago
- Last Updated
- yesterday
- Language
- Shell
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Solid
nano-help
Quick reference for all nanostack commands. Shows available skills, what each one does, and how to use them. Triggers on /nano-help.
1 Updated yesterday
Jihadyip286 Code & Development Listed
nanostack
Use when the user asks about available workflow skills, wants an overview of the engineering workflow, or references "nanostack". Also triggers on /nanostack.
1 Updated yesterday
Jihadyip286 Code & Development Solid
nano
Use when starting non-trivial work (touching 3+ files, new features, refactors, bug investigations). Produces a scoped, actionable implementation plan before any code is written. Triggers on /nano.
1 Updated yesterday
Jihadyip286