setup

setup is a skill for Claude Code, Codex from satoh-y-0323/claude-code-conductor. It costs 58 tokens per session (2,152 once invoked), scanned A, original, MIT.

A project setup workflow that asks about a project’s languages, frameworks, runtime, and conventions, then creates coding-standard and project-convention files for the project setup agent.

In plain words
What is it for?
Use it to collect the technology stack and generate .claude/rules/coding-standards.md and .claude/rules/project-conventions.md.
Why use it?
It turns project-specific answers into written guidance instead of leaving the agent to guess the codebase’s rules. It is intended for starting a project or when the session setup guard requires it.

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/satoh-y-0323/claude-code-conductor/setup
Any agent
npx skills add satoh-y-0323/claude-code-conductor --skill setup
Clone the repo
git clone --depth 1 https://github.com/satoh-y-0323/claude-code-conductor

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 setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/satoh-y-0323/claude-code-conductor/setup.svg)](https://agentmods.dev/skills/satoh-y-0323/claude-code-conductor/setup)
Your own site
<a href="https://agentmods.dev/skills/satoh-y-0323/claude-code-conductor/setup"><img src="https://agentmods.dev/badge/skills/satoh-y-0323/claude-code-conductor/setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,152 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 $0.00058 $0.02152
Opus 5 $0.00029 $0.01076
Sonnet 5 $0.00012 $0.00430
Haiku 4.5 $0.00006 $0.00215

Measured today against content hash fc6a13830070, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

setup 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 today.

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.

.claude/skills/setup/SKILL.md · 238 lines

How it starts

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

setup

プロジェクトのコーディング規約を設定する。 ヒアリングは親 Claude が担当し、収集後に project-setup エージェントを起動する。

起動経路の制約: 本 skill の起動は (a) ユーザーの /setup 明示呼び出し、 (b) init-session ガード G-2 が SETUP_NEEDED を検出した際のチェーン起動、の 2 経路のみ。 それ以外の場面で LLM の判断により自発的に起動してはならない (frontmatter で model invocation を禁止しない理由は G-2 チェーン起動を許可するため。v2.38.0 設計)。


Phase 1: 技術スタックのヒアリング(親 Claude が実施)

Q1: 言語・バージョン

AskUserQuestion ツール:

{
  "questions": [{
    "question": "使用する言語とバージョンを教えてください",
    "options": [
      { "label": "Python", "description": "バージョンを後で確認します" },
      { "label": "TypeScript / JavaScript", "description": "バージョンを後で確認します" },
      { "label": "Go", "description": "バージョンを後で確認します" },
      { "label": "Java / Kotlin", "description": "バージョンを後で確認します" },
      { "label": "C# / .NET", "description": "バージョンを後で確認します" },
      { "label": "その他・自由入力" }
    ]
  }]
}

選択後にバージョンを確認する。

Q2: フレームワーク

AskUserQuestion ツール:

{
  "questions": [{
    "question": "使用するフレームワーク・主要ライブラリを教えてください",
    "options": [
      { "label": "使用するものがある", "description": "具体的に入力してください" },
      { "label": "まだ決めていない" },
      { "label": "使用しない" }
    ]
  }]
}

Q3: 実行環境

AskUserQuestion ツール:

{
  "questions": [{
    "question": "実行環境はどれですか?",
    "options": [
      { "label": "サーバーサイド(API・バックエンド)" },
      { "label": "ブラウザ(フロントエンド)" },
      { "label": "両方(フルスタック)" },
      { "label": "CLI ツール" },
      { "label": "その他・自由入力" }
    ]
  }]
}

Q4: データベース

AskUserQuestion ツール:

{
  "questions": [{
    "question": "データベースは使いますか?",
    "options": [
      { "label": "PostgreSQL" },
      { "label": "MySQL / MariaDB" },
      { "label": "SQLite" },
      { "label": "MongoDB" },
      { "label": "その他・自由入力" },
      { "label": "使わない" }
    ]
  }]
}

Q5: テストフレームワーク

AskUserQuestion ツール:

{
  "questions": [{
    "question": "テストフレームワークは決まっていますか?",
    "options": [
      { "label": "決まっている", "description": "具体的に入力してください" },
      { "label": "まだ決めていない" }
    ]
  }]
}

Read the full file on GitHub · 238 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. today First seen · 238 lines · 58 tokens per session scan A fc6a13830070

Subscribe to this mod's changes

setup is a skill published in the GitHub repository satoh-y-0323/claude-code-conductor (1 stars, last pushed yesterday), licensed MIT. It adds 58 tokens to every session and 2,152 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-09-04.