project-init

project-init is a skill for Claude Code from u9401066/template-is-all-you-need. It costs 67 tokens per session (1,616 once invoked), scanned A, original, Apache-2.0.

A project-starting workflow that creates a new application from an existing template and copies its rules, directory structure, skills, and working notes.

In plain words
What is it for?
Use it to bootstrap Python, Node.js, React, Vue, or full-stack projects, choose a license and location, create standard folders, and initialize project documentation.
Why use it?
It avoids rebuilding the project's standard setup by hand and gives a new codebase the same agreed conventions from the beginning.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Codex.

Good fit Use it to bootstrap Python, Node.js, React, Vue, or full-stack projects, choose a license and location, create standard folders, and initialize project documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/u9401066/template-is-all-you-need/project-init
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.

Any agent
npx skills add u9401066/template-is-all-you-need --skill project-init
Clone the repo
git clone --depth 1 https://github.com/u9401066/template-is-all-you-need

Made for: Claude Code.

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-init

README.md
[![agentmods](https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/project-init/github.svg)](https://agentmods.dev/skills/u9401066/template-is-all-you-need/project-init)
Your own site
<a href="https://agentmods.dev/skills/u9401066/template-is-all-you-need/project-init"><img src="https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/project-init/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.

agentmods 80×15 button for project-init

Your own site · 80×15
<a href="https://agentmods.dev/skills/u9401066/template-is-all-you-need/project-init"><img src="https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/project-init.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,616 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00067 $0.01616
Opus 5 $0.00034 $0.00808
Sonnet 5 $0.00013 $0.00323
Haiku 4.5 $0.00007 $0.00162

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

Security

Grade A, and why

project-init 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/skills/project-init/SKILL.md · 256 lines

How it starts

The opening of the file, as written. The whole thing — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.

專案初始化技能

描述

將此專案作為模板,快速初始化新專案,完整繼承法規系統和 Skills 架構。

觸發條件

  • 「初始化新專案」「init」「新專案」
  • 「從模板建立專案」「template」
  • 「create new project」「bootstrap」

🔧 操作步驟

Step 1: 收集專案資訊

詢問使用者:

請提供新專案資訊:

1. **專案名稱**:my-awesome-project
2. **專案描述**:一句話描述
3. **專案類型**:
   - [ ] Python 後端
   - [ ] Node.js 後端
   - [ ] React 前端
   - [ ] Vue 前端
   - [ ] 全端 (Monorepo)
4. **授權類型**:MIT / Apache-2.0 / GPL-3.0
5. **目標路徑**:~/projects/my-awesome-project

Step 2: 建立目錄結構

# 建立專案目錄
New-Item -ItemType Directory -Path "C:\projects\my-awesome-project" -Force

# 建立核心目錄
$dirs = @(
    ".github\bylaws",
    ".github\workflows",
    ".github\ISSUE_TEMPLATE",
    ".claude\skills",
    "memory-bank",
    "docs",
    "tests"
)

foreach ($dir in $dirs) {
    New-Item -ItemType Directory -Path "C:\projects\my-awesome-project\$dir" -Force
}

Step 3: 複製法規系統

檔案/目錄 動作 說明
CONSTITUTION.md 複製 憲法
.github/bylaws/*.md 複製 所有子法
.github/copilot-instructions.md 複製並修改 更新專案名稱

Step 4: 複製 Skills

# 複製整個 skills 目錄
Copy-Item -Path "D:\template\.claude\skills\*" -Destination "C:\projects\my-awesome-project\.claude\skills" -Recurse

Step 5: 初始化 Memory Bank

建立空的 Memory Bank 檔案:

$memoryFiles = @(
    "activeContext.md",
    "progress.md",
    "decisionLog.md",
    "architect.md",
    "productContext.md",
    "projectBrief.md",
    "systemPatterns.md"
)

foreach ($file in $memoryFiles) {
    New-Item -ItemType File -Path "C:\projects\my-awesome-project\memory-bank\$file" -Force
}

初始內容範例(activeContext.md)

# Active Context

> Last updated: 2026-01-15

## 🎯 當前焦點

專案剛初始化,尚未開始開發。

## 📁 相關檔案

- 待新增

## ⚠️ 待解決問題

- [ ] 設定開發環境
- [ ] 定義領域模型

Step 6: 初始化專案檔案

README.md

# {專案名稱}

> {專案描述}

## ✨ 功能特色

- 待新增

## 📦 安裝

\`\`\`bash
# 待補充
\`\`\`

## 🚀 快速開始

\`\`\`bash
# 待補充
\`\`\`

## 📄 授權

{授權類型} License

CHANGELOG.md

# Changelog

All notable changes to this project will be documented in this file.

## [Unreleased]

### Added
- 專案初始化

Read the full file on GitHub · 256 lines

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. 10d ago First seen · 256 lines · 0 tokens per session scan A 0df82c9f5b28

Subscribe to this mod's changes

project-init is a skill published in the GitHub repository u9401066/template-is-all-you-need (3 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 67 tokens to every session and 1,616 once invoked, about $0.0003 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.

Related

Other skills, from other repositories