Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add vanthienha199/openclaw-skills --skill project-kickstartgit clone --depth 1 https://github.com/vanthienha199/openclaw-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/vanthienha199/openclaw-skills/project-kickstart)<a href="https://agentmods.dev/skills/vanthienha199/openclaw-skills/project-kickstart"><img src="https://agentmods.dev/badge/skills/vanthienha199/openclaw-skills/project-kickstart/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/vanthienha199/openclaw-skills/project-kickstart"><img src="https://agentmods.dev/badge/skills/vanthienha199/openclaw-skills/project-kickstart.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00096 | $0.00812 |
| Opus 5 | $0.00048 | $0.00406 |
| Sonnet 5 | $0.00019 | $0.00162 |
| Haiku 4.5 | $0.00010 | $0.00081 |
Grade A, and why
project-kickstart scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Project Kickstart
You scaffold new projects with best-practice defaults so the user can start coding in 60 seconds.
Core Behavior
When the user describes what they want to build, detect the best stack and generate the project structure with all configuration files.
Supported Stacks
| Stack | Trigger | What's Generated |
|---|---|---|
| Next.js + TypeScript | "next app", "react website" | next.config.ts, tsconfig, tailwind, eslint, app/ router |
| React + Vite | "react app", "SPA" | vite.config, tsconfig, tailwind, src/ structure |
| Python CLI | "python tool", "CLI tool" | pyproject.toml, click/typer, src/, tests/ |
| FastAPI | "python API", "backend" | main.py, requirements.txt, Dockerfile, tests/ |
| Express + TypeScript | "node API", "express" | tsconfig, src/, routes/, middleware/ |
| Static HTML | "landing page", "static site" | index.html, styles.css, script.js |
| OpenClaw Skill | "openclaw skill", "agent skill" | SKILL.md, README.md with frontmatter |
What Every Project Gets
Regardless of stack:
.gitignore— language-appropriateREADME.md— project name, description, quick start, licenseLICENSE— MIT by default (ask if user wants different).github/workflows/ci.yml— basic CI (lint + test)git init— initialized with first commit
Workflow
Step 1: Ask (if not clear)
What are you building?
1. Web app (Next.js)
2. API (FastAPI/Express)
3. CLI tool (Python)
4. Static site
5. OpenClaw skill
6. Something else (describe it)
Step 2: Generate
Create all files with the appropriate content. Don't use placeholder text — write real, working starter code.
Step 3: Report
Project created: my-awesome-app/
my-awesome-app/
├── .github/workflows/ci.yml
├── .gitignore
├── LICENSE (MIT)
├── README.md
├── package.json
├── tsconfig.json
├── src/
│ └── app/
│ ├── layout.tsx
│ └── page.tsx
└── tailwind.config.ts
Next steps:
cd my-awesome-app
npm install
npm run dev
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 96 lines · 96 tokens per session scan A f8efd7f2406a
project-kickstart is a skill published in the GitHub repository vanthienha199/openclaw-skills (1 stars, last pushed 5mo ago), licensed MIT. It adds 96 tokens to every session and 812 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
project-scaffold
A project-scaffolding tool that generates starter code for modules, pages, skills, and IPC handlers. IPC is the communication layer between separate parts of an application or process.
merge-seed
Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.
portaljs-new-portal
Scaffold a new PortalJS data portal from a brief. Copies the canonical template from examples/portaljs-catalog and substitutes project tokens. Use when starting a brand-new data portal project from scratch.
workflow-creation
Create a new Stencila workflow. Use when asked to create, write, scaffold, or set up a workflow directory or WORKFLOW.md file. Covers workflow discovery, duplicate-name checks, ephemeral workflows, WORKFLOW.md frontmatter, DOT pipeline authoring, goals, agents, branching, composition, and validation.
agent-creation
Create a new Stencila agent. Use when asked to create, write, scaffold, or set up an agent directory or AGENT.md file. Covers workspace and user-level agents with model, provider, tool, trust, and MCP configuration.
skill-creation
Create a new Stencila workspace skill. Use when asked to create, write, or scaffold a SKILL.md file or skill directory.