Claude Code skills and plugins for the full solo-developer lifecycle -- scope, architecture, build, ship, grow, sustain.
  • Python 99.3%
  • PowerShell 0.3%
  • Shell 0.3%
Find a file
frobinson47 770cc033dc
Some checks failed
Validate Skills / validate (3.9) (push) Has been cancelled
Validate Skills / validate (3.12) (push) Has been cancelled
fix: handle unescaped Windows backslashes in profile JSON input
When Claude pipes JSON with Windows paths like D:\laragon\www\project,
the single backslashes create invalid JSON escape sequences. profile_io.py
now auto-fixes these by converting unescaped backslashes to forward slashes
on parse failure, before reporting an error.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-25 14:01:13 -04:00
.claude-plugin fix: remove invalid 'skills' field from all plugin.json files 2026-04-24 22:30:07 -04:00
.github/workflows feat: add CI/CD workflow and skill creator meta-skill 2026-04-24 15:34:30 -04:00
plugins Initial release: Solo Dev Suite monorepo 2026-04-23 07:57:00 -04:00
skills fix: handle unescaped Windows backslashes in profile JSON input 2026-04-25 14:01:13 -04:00
.cursorrules feat: add deploy-readiness skill (local-to-cloud codebase scanner) 2026-04-24 22:09:13 -04:00
.gitattributes fix: enforce LF line endings for shell scripts 2026-04-23 09:31:41 -04:00
.gitignore feat: add onboarding wizard and cross-skill dashboard 2026-04-24 13:02:08 -04:00
AGENTS.md feat: add deploy-readiness skill (local-to-cloud codebase scanner) 2026-04-24 22:09:13 -04:00
codex.md feat: add deploy-readiness skill (local-to-cloud codebase scanner) 2026-04-24 22:09:13 -04:00
CONTRIBUTING.md feat: add skill dependency enforcement and CONTRIBUTING.md 2026-04-24 14:08:18 -04:00
install.ps1 Initial release: Solo Dev Suite monorepo 2026-04-23 07:57:00 -04:00
install.sh Initial release: Solo Dev Suite monorepo 2026-04-23 07:57:00 -04:00
LICENSE Initial release: Solo Dev Suite monorepo 2026-04-23 07:57:00 -04:00
README.md feat: add Claude Code plugin marketplace structure 2026-04-24 00:15:27 -04:00

Solo Dev Suite

A collection of Claude Code skills and plugins covering the full solo-developer lifecycle -- from scope lock through long-term sustainment. All skills share a central project profile so you never re-establish context between runs.

What's Included

Skills (13)

Skill Phase(s) What it does
solo-dev-suite all Master orchestrator -- loads profiles, routes to child skills
mvp-scope-guardian scope 4-bucket scope lock + creep detection
saas-pricing-architect scope, grow Versioned pricing with competitive anchoring
integration-mapper architecture, build 3rd-party dependency risk audit with 3D scoring
adr-generator architecture, build Architecture Decision Records (Nygard format)
sprint-planner build Solo-dev sprints with honest capacity math + velocity tracking
tech-debt-register build, sustain Managed debt backlog with priority-ranked pay-downs
testing-strategy build Right-sized test plan (unit/integration/e2e/manual)
launch-readiness ship Pre-ship gate with tailored 9-category checklist
security-audit ship Stack-aware security pass with 10 categories
auto-docs ship, sustain Generated README, SETUP, ARCHITECTURE, CHANGELOG
design-loop any Iterative design exploration loop
feature-enhance any Feature enhancement discovery and analysis

Plugins (2)

Plugin What it does
market-feasibility 7-dimension feasibility study with GO/NO-GO verdict
software-valuation Pricing strategy analysis from local code or public repo

Lifecycle Phases

Skills map to a left-to-right lifecycle:

idea -> scope -> architecture -> build -> ship -> grow -> sustain

The orchestrator filters skills by your project's current phase so you only see what's relevant.

Install

claude plugin marketplace add https://github.com/frobinson47/solo-dev-suite

This registers all 15 components (13 skills + 2 plugins) in one command. Claude Code handles updates automatically.

Option 2: Manual Install

Linux / macOS

git clone https://github.com/frobinson47/solo-dev-suite.git
cd solo-dev-suite
./install.sh

Windows (PowerShell)

git clone https://github.com/frobinson47/solo-dev-suite.git
cd solo-dev-suite
.\install.ps1

The manual installer symlinks (Linux/macOS) or copies (Windows) skills into ~/.claude/skills/ and plugins into ~/.claude/plugins/marketplaces/. Restart Claude Code after installing.

Quick Start

  1. Install (see above)
  2. Create a project profile -- copy skills/solo-dev-suite/profiles/example.json, rename it to <your-slug>.json, and fill in your project details
  3. Ask Claude Code -- "set up my-project in the suite" or invoke any skill directly (e.g., "run a security audit on my-project")

The orchestrator loads your profile automatically and routes to the right skill.

How It Works

solo-dev-suite/
  .claude-plugin/
    marketplace.json          # Plugin marketplace manifest (15 entries)
    plugin.json               # Root plugin metadata
  skills/
    solo-dev-suite/           # Master orchestrator
      profiles/<slug>.json    # Your project profiles (gitignored)
      profiles/example.json   # Template to copy
      data/children.json      # Skill registry
      scripts/profile_io.py   # Profile CRUD
      scripts/list_skills.py  # Phase-aware skill menu
    mvp-scope-guardian/       # Child skill
    saas-pricing-architect/   # Child skill
    ...                       # (11 more)
  plugins/
    market-feasibility/       # Pre-project feasibility plugin
    software-valuation/       # Pre-project valuation plugin
  • Zero external dependencies -- pure Python stdlib. No pip installs.
  • Self-contained skills -- each skill has its own scripts and templates.
  • Atomic writes -- write to .tmp then rename. No mid-write corruption.
  • Cross-skill data flows -- skills write lean summaries to the profile so other skills can read them. Example: integration-mapper populates third_party_services, which security-audit reads to tailor its checklist.

Updating

cd solo-dev-suite
git pull
./install.sh   # or .\install.ps1 on Windows

Requirements

  • Claude Code (CLI, desktop app, or IDE extension)
  • Python 3.9+ (stdlib only)

License

MIT