ワンクリックで
init
Initialize a project for AI-assisted development. Generates AGENTS.md (universal AI guide) through systematic codebase analysis.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Initialize a project for AI-assisted development. Generates AGENTS.md (universal AI guide) through systematic codebase analysis.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Ensure this skill is active before every journal write — new entry, edit, restructure, or activity log append. Provides the graph protocol (bidirectional links, indexes), the directory layout, and the activity log format that keep the journal consistent.
Activate when the turn's deliverable is source, test, code analysis, or config files — editing or creating code. Provides the Research → Strategy → Execution workflow, the complexity budget, and specialised deep-dive companions (testing, debug, refactor, review).
Activate when the turn's deliverable is a design — system architecture, API contract, data model, component decomposition, or trade-off analysis. Provides the Constraints → Explore → Decide → Specify → Plan workflow for sound, well-reasoned designs.
Activate when the turn's deliverable is findings, comparisons, recommendations, or an investigation-backed plan — answering questions, analyzing unfamiliar code, exploring new domains. Provides the systematic Scope → Discover → Synthesize → Plan workflow.
Activate when the turn's deliverable is substantial prose — docs, copy, proposals, feedback, commit/PR text, or UI strings. Provides copywriting frameworks, tone guidance, and editing workflow for clear, persuasive, polished output.
Force explicit research mode — Scope → Discover → Synthesize → Plan — with the approval gate before any implementation.
SOC 職業分類に基づく
| name | init |
| description | Initialize a project for AI-assisted development. Generates AGENTS.md (universal AI guide) through systematic codebase analysis. |
| disable-model-invocation | true |
| user-invocable | true |
When this skill is activated, you perform a systematic codebase analysis and generate AGENTS.md — a universal AI assistant guide that works with any LLM (Claude, Gemini, GPT, etc.). Always present the proposed content to the user for approval before writing.
Gather facts — do not guess. Every claim in AGENTS.md must come from something you read.
LS . # top-level overview
LS src/ # if src/ exists
Note: main source directories, test directories, config directories.
Read whichever of these exist (issue parallel Read calls):
| File | What it reveals |
|---|---|
pyproject.toml / setup.py / setup.cfg | Python project, deps, scripts |
package.json | Node.js project, scripts (build/test/lint), deps |
go.mod | Go project, module name, Go version |
Cargo.toml | Rust project |
pom.xml / build.gradle | Java/Kotlin project |
Makefile | Build targets — read ALL targets |
tox.ini / pytest.ini / .pytest.ini | Python test config |
jest.config.* / vitest.config.* | JS test config |
.github/workflows/*.yml | CI pipeline — reveals the canonical test/build commands |
Dockerfile | Runtime environment |
.env.example / template.env | Required environment variables |
From what you read, extract the exact commands for:
--watch=false)If multiple options exist (e.g., make test and pytest), list both and note which is preferred.
Glob src/**/*.py # or the relevant extension
Read README.md if it exists. Read 2-3 representative source files to understand (choose: the main entry point, one domain model or core service, and one test file):
From reading actual code, extract:
test_*.py, *.test.ts, *_test.go)Produce the full content and present it to the user before writing.
# [Project Name]
## Overview
[1-2 sentences: what this project does and who uses it.]
## Essential Commands
\`\`\`bash
# Install dependencies
[exact command]
# Build
[exact command, or omit section if interpreted language with no build step]
# Run tests
[exact command with required flags, e.g.: pytest --tb=short -x]
# Lint
[exact command]
# Format
[exact command]
# Start dev server / run locally
[exact command]
\`\`\`
## Architecture
[2-4 sentences describing the high-level structure and key design decisions.]
| Directory / File | Purpose |
|-----------------|---------|
| `[main source dir]/` | [what lives here] |
| `tests/` | [test structure and framework] |
| `[key config file]` | [what it configures] |
## Development Guidelines
- **Before modifying a module**, read it and its tests together.
- **Test framework**: [name]. Tests live in `[location]`. Run with `[exact command]`.
- **Naming**: [conventions from Phase 1].
- **Imports**: [relative/absolute pattern observed in the code].
- **Error handling**: [pattern used in the project].
## Important Constraints
[Things an AI assistant must not do — inferred from the codebase. Only include if evidence exists:]
- e.g., "Do not use `os.system` — use `subprocess` with explicit args instead."
- e.g., "All database access goes through the repository layer — never query the DB directly from a handler."
- e.g., "Do not commit `.env` — use `template.env` as the reference."
## Key Files
| File | Purpose |
|------|---------|
| [file path] | [what it is and why an AI working on this project should know about it] |
AGENTS.md to the user.Write to AGENTS.md in the project root.AGENTS.md to version control so all AI tools on this project benefit from it.