project-kickoff

project-kickoff is a skill for Claude Code, Codex from Stanshy/AgentHub. It costs 24 tokens per session (929 once invoked), scanned A, original, MIT.

A project setup workflow for starting a new web app, API service, mobile app, or library.

In plain words
What is it for?
It is for setting up project instructions, knowledge files, company rules, a roadmap, and Git version control.
Why use it?
It creates the shared documents and directory structure that agents need before development begins.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/stanshy/agenthub/project-kickoff
Any agent
npx skills add Stanshy/AgentHub --skill project-kickoff
Clone the repo
git clone --depth 1 https://github.com/Stanshy/AgentHub

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for project-kickoff

README.md
[![agentmods](https://agentmods.dev/badge/skills/stanshy/agenthub/project-kickoff.svg)](https://agentmods.dev/skills/stanshy/agenthub/project-kickoff)
Your own site
<a href="https://agentmods.dev/skills/stanshy/agenthub/project-kickoff"><img src="https://agentmods.dev/badge/skills/stanshy/agenthub/project-kickoff.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 929 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.00929
Opus 5 $0.00012 $0.00464
Sonnet 5 $0.00005 $0.00186
Haiku 4.5 $0.00002 $0.00093

Measured 5d ago against content hash c7be468d5526, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

project-kickoff 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 5d 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.

.knowledge/company/skill-templates/project-kickoff/SKILL.md · 110 lines

What it actually says

專案初始化

PM 啟動新專案時使用,確保所有基礎結構就位。

使用方式

/project-kickoff <project-type> <project-name>

參數

  • $0: 專案類型(web-app / api-service / mobile-app / library)
  • $ARGUMENTS: 完整參數

執行步驟

  1. 檢查現有結構

    • 檢查 CLAUDE.md 是否已存在
    • 檢查 .knowledge/ 目錄是否已存在
    • 如已存在,提示確認是否覆蓋
  2. 部署 CLAUDE.md

    • 從對應模板生成(替換 {專案名稱} 佔位符)
    • 模板位置:AgentHub .knowledge/company/project-templates/{type}/CLAUDE.md.template
  3. 建立 .knowledge/ 結構

    • 建立 .knowledge/ 目錄
    • 複製 architecture.md(從模板目錄)
    • 建立空的 project-overview.md(標題 + 佔位符)
    • 建立空的 postmortem-log.md(標題 + 空表格)
    • 從模板部署 file-index.md(替換 {專案名稱}、填入今日日期)
      • 模板位置:AgentHub .knowledge/company/project-templates/{type}/file-index.md.template
  4. 部署共用規則

    • 複製 company-rules.md.knowledge/company-rules.md
    • 複製 team-workflow.md.knowledge/team-workflow.md
  5. 建立 Roadmap

    5a. 建立 proposal/ 目錄(若已存在則跳過)

    5b. 建立 proposal/roadmap.md(若已存在則跳過):

    # {專案名稱} — 產品路線圖
    
    ## 產品定位
    > {一句話描述產品}
    
    ## 目標用戶
    > {描述}
    
    ## 核心價值
    > {描述}
    
    ## 版本規劃
    
    | Sprint | 主題 | 目標 | 狀態 |
    |--------|------|------|------|
    | Sprint 1 | {待定} | {待定} | 🔲 規劃中 |
    
    ## 長期願景
    > {描述}
    
  6. Git 初始化

    6a. 檢查是否已有 git repo(.git/ 目錄存在):

    • 已存在 → 跳過 git init
    • 不存在 → 執行 git init

    6b. 建立 .gitignore(若已存在則跳過):

    node_modules/
    dist/
    .env
    .env.*
    .claude/
    coverage/
    *.log
    .DS_Store
    

    6c. 執行初始 commit(若 working tree 有變更):

    git add -A
    git commit -m "chore: project kickoff — {project-name}"
    
  7. 輸出下一步 Checklist

    ✅ 專案初始化完成
    
    Git:已初始化 ✅
    初始 commit:chore: project kickoff — {project-name} ✅
    Roadmap:proposal/roadmap.md ✅
    
    下一步:
    - [ ] 填寫 CLAUDE.md 專案簡介佔位符
    - [ ] 填寫技術棧表格
    - [ ] 填寫 proposal/roadmap.md 產品定位
    - [ ] 執行 /product-diagnosis 做 G0 前置診斷
    - [ ] 撰寫 Sprint 提案書(/sprint-proposal)
    - [ ] 執行 /dev-plan 建立 sprint branch
    
Changes

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.

  1. 5d ago First seen · 110 lines · 24 tokens per session scan A c7be468d5526

Subscribe to this mod's changes

project-kickoff is a skill published in the GitHub repository Stanshy/AgentHub (201 stars, last pushed 4mo ago), licensed MIT. It adds 24 tokens to every session and 929 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

integrated-browser

Use this when working on the VS Code integrated browser ("browserView") to understand its architecture and mental model. Covers the embedded Chromium browser, its editor tab, navigation, overlay/layout, sessions, and agent browser tools under src/vs/platform/browserView and src/vs/workbench/contrib/browserView.

microsoft/vscode · 68 tokens

agent-host-e2e-tests

Use when writing, recording, updating, validating, or troubleshooting the agent host end-to-end tests under src/vs/platform/agentHost/test/node/e2e (black-box tests that drive the whole agent host over the AHP protocol, using a CapiReplayProxy record/replay system for Claude/Copilot/Codex). Covers adding a…

microsoft/vscode · 111 tokens

vscode-dev-workbench

Use when the user wants to run the vscode.dev server locally and exercise the VS Code workbench or Agents window in the integrated browser against the local microsoft/vscode sources. Covers starting the dev server, the vscode-quality=dev URL, browser-driven interaction patterns, and optionally wiring up a local mock…

microsoft/vscode · 78 tokens

generate-run-commands

Generate or modify run commands for the current session. Use when the user wants to set up or update run commands that appear in the session's Run button.

microsoft/vscode · 36 tokens

thisWeek

Resolve "thisWeek" to a concrete ISO date range relative to your run time — this week so far (Monday → today). Returns inclusive civil dates plus exact UTC instants so you have temporal context without computing dates by hand. Read-only: no writes, no network. Use before a week-to-date task (this week's activity…

chaitanyagiri/munder-difflin · 77 tokens