10x-bootstrapper

Scaffolds a project from a tech-stack hand-off file using the chosen starter's CLI.

Updated Aug 26, 2026
One-click install
npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-bootstrapper-michaail
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-bootstrapper
Source: https://github.com/michaail/hybrid-logs-analyzer/tree/main/.cursor/skills/10x-bootstrapper
Command: npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-bootstrapper-michaail

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Turning a chosen tech stack into a working project scaffold is error-prone: starter CLIs differ in how they handle the current directory, existing files can be clobbered, and there is no audit trail of what was run. This Skill consumes a written tech-stack hand-off and scaffolds the project into the current working directory with a strict conflict policy and a verification log. ## Core Features & Use Cases - Hand-off-driven scaffolding: Reads context/foundation/tech-stack.md, resolves the starter card from the tech-stack-selector registry by starter_id, and runs the starter's cmd_template with the correct cwd strategy (subdir-then-move, native-cwd, or git-clone). - Strict conflict policy: Existing files become .scaffold siblings, context/ is never overwritten, and .gitignore is append-merged, so re-runs never destroy user work. - Verification and audit trail: Runs pre-scaffold recency checks (npm/GitHub), post-scaffold dependency audits (npm audit, pip-audit, cargo audit, govulncheck, etc.), and writes a structured verification.md log. - Use Case: After running /10x-tech-stack-selector to pick Next.js, invoke this Skill to scaffold the app into your project directory, get warned about stale starters or CRITICAL vulnerabilities, and receive a full audit log of the run. ## Quick Start Run /10x-bootstrapper after /10x-tech-stack-selector has written context/foundation/tech-stack.md to scaffold the chosen starter into the current directory.

Frequently Asked Questions about 10x-bootstrapper

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a project after picking a tech stack?

Run /10x-tech-stack-selector first to write context/foundation/tech-stack.md, then invoke /10x-bootstrapper. It reads the hand-off, resolves the starter's CLI template, and scaffolds into the current working directory with a conflict-safe merge policy.

What happens if bootstrapper runs in a directory that already has files?

It warns you and asks for confirmation, then applies a strict conflict matrix: existing files are kept and scaffold copies land as .scaffold siblings, context/ is never overwritten, and .gitignore is append-merged with de-duplication.

Can I use bootstrapper without a tech-stack.md hand-off file?

No. The hand-off file is a hard precondition; if context/foundation/tech-stack.md is missing, the skill refuses, copies /10x-tech-stack-selector to your clipboard, and stops. It never falls back to conversation history or an inline stack pick.

Does bootstrapper check scaffolded dependencies for vulnerabilities?

Yes. After scaffolding it dispatches a per-language audit command such as npm audit, pip-audit, cargo audit, or govulncheck, tiers findings by severity, and logs the full breakdown. Findings are informational only; it never auto-patches.

What happens when the starter CLI fails during scaffolding?

A non-zero exit code is a hard stop: the .bootstrap-scaffold directory is left in place for inspection, a partial verification log is written with phase_3_status failed, and /10x-bootstrapper is copied to the clipboard for retry.

Does bootstrapper generate AGENTS.md, CLAUDE.md, or CI workflows?

No. Version 1 deliberately does not generate agent context files, CI workflow files, or git history. Those responsibilities are deferred to a future skill; bootstrapper only scaffolds, verifies, and logs.