AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Pwp Bootstrap

skill-shandar-pwp-plugin-pwp-bootstrap · by shandar

New project initialization protocol — from empty directory to production-ready foundation in one session. Use this skill whenever the user wants to start a new project, initialize a repo, scaffold an application, or set up a codebase from scratch. Also use when they say 'new project', 'start fresh', 'initialize a repo', 'scaffold this', 'set up the project', or 'create a new app'. Covers repo set…

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-shandar-pwp-plugin-pwp-bootstrap

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-shandar-pwp-plugin-pwp-bootstrap)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Pwp Bootstrap? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Project Bootstrap Skill

This skill defines how to start a new project from scratch. Covers repository setup, folder structure, configuration, and the first commit.

Bootstrap Mindset

  • Foundation before features. A well-initialized project saves hundreds of hours later.
  • Conventions from day one. It's 10x harder to adopt conventions after code exists.
  • Ship the skeleton first. Get the project building and deploying before writing features.
  • Document decisions early. The first ADR is the cheapest to write.

Bootstrap Checklist

Phase 1: Repository Foundation (5 min)

  • [ ] Git initialized
  • [ ] Package manager configured
  • [ ] .gitignore created
  • [ ] First commit: chore: initialize repository

Phase 2: Governance Files (5 min)

  • [ ] README.md — name, description, quick start
  • [ ] LICENSE
  • [ ] .env.example with placeholder values

Phase 3: Tooling Configuration (10 min)

  • [ ] TypeScript (strict mode)
  • [ ] Linter (ESLint / Biome)
  • [ ] Formatter (Prettier or equivalent)
  • [ ] Build tool (Vite, Next.js, etc.)

Phase 4: Project Structure (5 min)

{project}/
├── src/
│   ├── components/
│   ├── lib/
│   ├── types/
│   ├── hooks/
│   ├── api/
│   └── styles/
├── public/
├── docs/plans/
├── tests/
├── .env.example
├── .gitignore
├── README.md
├── tsconfig.json
└── package.json

Phase 5: Hello World (5 min)

  • [ ] Entry point created
  • [ ] Builds successfully
  • [ ] Runs locally
  • [ ] TypeScript compiles cleanly

Phase 6: CI/CD Setup (optional, 10 min)

  • [ ] GitHub Actions for build + type check
  • [ ] Deploy pipeline configured
  • [ ] Branch protection on main

CLAUDE.md Template

# Project: {name}

## Stack
- {Framework}: {version}
- {Language}: {version}

## Conventions
- Components: PascalCase, co-located with styles/tests
- Utilities: camelCase, in src/lib/
- Tests: co-located as {file}.test.ts

## Commands
- `npm run dev` — development server
- `npm run build` — production build
- `npm test` — run tests
- `npx tsc --noEmit` — type check

Anti-Patterns

| Anti-Pattern | Do This Instead | |-------------|----------------| | Starting with features, adding structure later | Structure first, features second | | No .gitignore from start | Create in first commit | | Copying config from another project blindly | Configure intentionally | | Skipping "Hello World" verification | Verify build/run before features | | No CI from start | Set up CI before first feature |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.