project-init

project-init is a skill for Claude Code, Codex from BlackBeltTechnology/pi-agent-dashboard. It costs 81 tokens per session (3,555 once invoked), scanned A, original, MIT.

An interactive setup guide that turns an unconfigured folder into a configured pi project. It can create project instructions, settings, prompt files, and optional supporting folders after showing the planned changes.

In plain words
What is it for?
Use it when initialising a bare directory as a pi project and choosing a project profile or optional scaffolding.
Why use it?
It gives a new project a consistent starting structure and lets you review generated files before they are written.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Use it when initialising a bare directory as a pi project and choosing a project profile or optional scaffolding.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/blackbelttechnology/pi-agent-dashboard/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 BlackBeltTechnology/pi-agent-dashboard --skill project-init
Clone the repo
git clone --depth 1 https://github.com/BlackBeltTechnology/pi-agent-dashboard

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/blackbelttechnology/pi-agent-dashboard/project-init.svg)](https://agentmods.dev/skills/blackbelttechnology/pi-agent-dashboard/project-init)
Your own site
<a href="https://agentmods.dev/skills/blackbelttechnology/pi-agent-dashboard/project-init"><img src="https://agentmods.dev/badge/skills/blackbelttechnology/pi-agent-dashboard/project-init.svg" alt="Measured on agentmods" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,555 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 14
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Rogue Agent · line 179
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00081 $0.03555
Opus 5 $0.00041 $0.01777
Sonnet 5 $0.00016 $0.00711
Haiku 4.5 $0.00008 $0.00356

Measured 4d ago against content hash f60ec0a11c91, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, 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 4d 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.

packages/extension/.pi/skills/project-init/SKILL.md · 274 lines

How it starts

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

Project Init

Turn the current directory into a configured pi project through a guided, conversational flow. You are running as a first-class interactive session — converse, confirm, and only write files after the user agrees.

Target directory = your current working directory (cwd). All writes land there. All profile/doctrine paths below are relative to THIS skill's directory (the folder containing this SKILL.md); call it <skill>.

Step 1 — Resolve the available profiles

A profile is a directory bundle: profile.json (optional, carries description + dox), AGENTS.md.tmpl, settings.json.tmpl, and prompts/*.md.

Enumerate profiles from two sources, user wins by name:

  1. Shipped: <skill>/profiles/*
  2. User: ~/.pi/project-profiles/*
ls -1 "<skill>/profiles" 2>/dev/null
ls -1 "$HOME/.pi/project-profiles" 2>/dev/null

Merge: a user profile of the same name fully shadows the shipped one. A directory is only a usable profile when it contains BOTH AGENTS.md.tmpl and settings.json.tmpl. Read each profile.json for its description and dox flag (dox defaults to false when absent or unreadable).

Step 2 — Ask which profile

Use ask_user (select) to present the resolved profiles by name + description. Shipped defaults are coding (TDD/simplicity/surgical, OpenSpec on, npm ci worktree-init) and docs (writing structure, OpenSpec off, no build step).

Step 2b — Resolve the technology stack (stack-aware profiles only)

When the chosen profile's profile.json has "stackAware": true (the shipped coding profile does), its templates carry technology placeholders ({{INSTALL_CMD}}, {{TEST_CMD}}, {{BUILD_CMD}}, {{INIT_GATE}}, {{INIT_COMMAND}}) that must be filled from the project's stack — a coding repo may be Node, Rust, Go, Python, Java, etc.

Auto-detect + confirm:

  1. Detect a best guess from marker files in the target directory:

    Marker file(s) Stack install / test / build init gate + run
    pnpm-lock.yaml pnpm pnpm install --frozen-lockfile / pnpm test / pnpm build test ! -d node_modules / pnpm install --frozen-lockfile
    yarn.lock yarn yarn install --frozen-lockfile / yarn test / yarn build test ! -d node_modules / yarn install --frozen-lockfile
    bun.lockb / bun.lock bun bun install / bun test / bun run build test ! -d node_modules / bun install
    package-lock.json / package.json npm npm ci / npm test / npm run build test ! -d node_modules / npm ci
    Cargo.toml cargo cargo fetch / cargo test / cargo build test ! -d target / cargo fetch
    go.mod go go mod download / go test ./... / go build ./... test ! -f go.sum / go mod download
    poetry.lock or pyproject.toml+[tool.poetry] poetry poetry install / poetry run pytest / poetry build test ! -d .venv / poetry install
    requirements.txt / pyproject.toml pip venv+pip install / .venv/bin/pytest / python -m build test ! -d .venv / venv+pip install
    pom.xml maven mvn -q dependency:go-offline / mvn test / mvn -q package -DskipTests test ! -d target / mvn -q dependency:go-offline
    build.gradle(.kts) gradle ./gradlew dependencies / ./gradlew test / ./gradlew build -x test test ! -d .gradle / ./gradlew dependencies

Read the full file on GitHub · 274 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. 4d ago First seen · 274 lines · 81 tokens per session scan A f60ec0a11c91

Subscribe to this mod's changes

project-init is a skill published in the GitHub repository BlackBeltTechnology/pi-agent-dashboard (276 stars, last pushed today), licensed MIT. It adds 81 tokens to every session and 3,555 once invoked, about $0.0004 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-03.

Related

Other skills, from other repositories

kano-backlog

Prioritize and refine a GitHub Issues backlog with the Kano model — categorize every open issue as Must-be, Performance, Attractive, Indifferent, or Reverse, apply Kano + priority labels back to GitHub automatically, and recommend the single best next issue to pick up. Use this whenever the user wants to triage…

Lykhoyda/rn-dev-agent · 215 tokens

akidevsync-notes

Read and edit a project's .akidevsync/notes.json task/note file — the per-project task list written by the Aki-Dev-Sync app (github.com/lacvietanh/aki-dev-sync). Use when the user asks to list, add, pin/unpin, mark done, edit, or delete a task in that file, or mentions "task note", "note ghim", "pin task", "mark…

lacvietanh/akidevrule · 137 tokens

send-feedback

Explicit Codex workflow: Collect reviewed, sanitized rn-dev-agent feedback and create a GitHub issue only with user confirmation.

Lykhoyda/rn-dev-agent · 27 tokens

starfleet

Fleet coordination — comms, concurrency, task capture, and starfleetctl CLI. Load when handling inter-ship messages, setting up parallel work, capturing tasks, or running starfleetctl commands.

mpbt-hq/starfleetctl · 43 tokens

agentlas-operations

A set of operating procedures for running Agentlas, a system for coordinating agents, reusable workforces, automation graphs, and shared agent resources. It covers candidate selection, graph creation, asset discovery, and memory rules.

agentlas-ai/Agentlas-OS · 67 tokens

design-debt-tracker

Use when critique or review produces deferred findings, when checking accumulated design compromises, or when deciding what to address in the next iteration. Maintains a living register of design debt — the minor issues, future-iteration notes, and conscious compromises that accumulate across a project.

Owl-Listener/designpowers · 58 tokens