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 u9401066/template-is-all-you-need --skill project-initgit clone --depth 1 https://github.com/u9401066/template-is-all-you-needWrote 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/u9401066/template-is-all-you-need/project-init)<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.
<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>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.00067 | $0.01616 |
| Opus 5 | $0.00034 | $0.00808 |
| Sonnet 5 | $0.00013 | $0.00323 |
| Haiku 4.5 | $0.00007 | $0.00162 |
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- project-init — 100% identical, 0 lines differ
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
- 專案初始化
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 · 256 lines · 0 tokens per session scan A 0df82c9f5b28
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.
Other skills, from other repositories
clean-architecture-dotnet
Use when domain logic leaks into API/Infrastructure, project references violate layer boundaries, or you need to decide between CQS (always), CQRS bus (complex domains), and DDD patterns (invariants and events).
mutation-testing
Use when running mutation testing, killing mutants, verifying test quality, checking mutation score, or analyzing survivors after the test baseline is green.
generate-microcks-openapi-samples
Use when creating OpenAPI mock examples for Microcks, setting up request/response routing with dispatchers, or mapping request fields to mock responses.
outside-in-tdd
Use when writing tests from the outside-in, defining behavior before code, or any feature where tests should start from observable business behavior and let internal design emerge.
extracting-code-structure
Use when listing all methods, functions, or classes in a file, exploring unfamiliar code, getting API overviews, or deciding what to read selectively without loading entire files.
creating-dotnet-mcp-servers
Use when building Model Context Protocol (MCP) servers in .NET, configuring tools, transports (SSE/stdio), JSON serialization for AOT, or testing MCP endpoints.