initialize-project

initialize-project is a skill for Claude Code, Codex from LamantinAI/mayak. It costs 60 tokens per session (1,387 once invoked), scanned A, original, MIT.

A repository setup procedure for projects created from the Mayak template. Bootstrapping means installing dependencies and replacing template details with the new service's identity.

In plain words
What is it for?
Use it to prepare a Mayak-based repository for local development, including dependencies, hooks, environment configuration, and project overview checks.
Why use it?
It prevents leftover template names, missing environment files, and setup checks from causing later development or deployment problems.

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/lamantinai/mayak/initialize-project
Any agent
npx skills add LamantinAI/mayak --skill initialize-project
Clone the repo
git clone --depth 1 https://github.com/LamantinAI/mayak

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 initialize-project

README.md
[![agentmods](https://agentmods.dev/badge/skills/lamantinai/mayak/initialize-project.svg)](https://agentmods.dev/skills/lamantinai/mayak/initialize-project)
Your own site
<a href="https://agentmods.dev/skills/lamantinai/mayak/initialize-project"><img src="https://agentmods.dev/badge/skills/lamantinai/mayak/initialize-project.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,387 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.00060 $0.01387
Opus 5 $0.00030 $0.00694
Sonnet 5 $0.00012 $0.00277
Haiku 4.5 $0.00006 $0.00139

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

Security

Grade A, and why

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

.agents/skills/initialize-project/SKILL.md · 86 lines

How it starts

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

Initialize Project

One-shot bootstrap of a checkout: install the toolchain, then replace the template's identity with this service's own. The second half is the part that gets skipped, and the cost lands later — an OpenAPI page titled "Mayak API" in production, or uv lock --check failing in a gate that has nothing to do with what you were changing.

When to use it

  • The user asks to initialize or bootstrap the repository.
  • The user wants local development setup.
  • The user wants .env created from .env.sample without overwriting an existing file.

Workflow

  1. make init-project. It runs ./dev_setup.sh (dependencies, git hooks, .env from .env.sample only if absent), then bootstrap and overview, then workset diff when the worktree already has changes. It is idempotent — an existing .env is never overwritten.
  2. Decide whether this repository is the template or a project built from it. If it is the template, stop here. Everything below assumes it is a new service.
  3. Replace the identity in all six places below.
  4. make update-deps — this is uv lock, and it is what makes step 3's pyproject.toml rename real. Skipping it leaves uv.lock naming the template package, and uv lock --check — the first line of make quality-gates — fails on a file you did not touch.
  5. make refresh-generated-docs. docs/project_map.md renders the project name from docs/project_context.json, and CLAUDE.md is generated too; without this the next gate fails on artifact drift rather than on your work.
  6. Decide whether this project needs a relational store. If it does not — a vector-search-only or stateless service — set POSTGRES_ENABLED=false in .env and say so in the postgres entry of docs/project_context.json. The kernel then starts without a connection pool, runs no migrations, and stops reporting the database as a critical readiness check. Leaving the default true keeps PostgreSQL required, which is right for most services. See docs/adr/ADR-006-optional-postgres.md.
  7. make quality-gates, then continue with .agents/skills/add-vertical for the first feature.

Read the full file on GitHub · 86 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 · 86 lines · 60 tokens per session scan A b71324a197bc

Subscribe to this mod's changes

initialize-project is a skill published in the GitHub repository LamantinAI/mayak (5 stars, last pushed yesterday), licensed MIT. It adds 60 tokens to every session and 1,387 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

datamodel-code-generator

Use this skill when the user wants Python data models, Pydantic models, dataclasses, TypedDicts, msgspec structs, or type-safe Python classes generated from OpenAPI, AsyncAPI, JSON Schema, GraphQL, JSON/YAML/CSV sample data, MCP tool schemas, Protocol Buffers, XML Schema, Apache Avro, or existing Python model objects.…

koxudaxi/datamodel-code-generator · 147 tokens

fastapi-guard

Production-ready security middleware for FastAPI. Use when adding IP filtering, rate limiting, per-route security decorators, route-resolution strict mode, global behavior rules, passive/log-only mode, or Guard Agent SaaS telemetry to a FastAPI app. Covers SecurityMiddleware setup, SecurityConfig tuning, and the…

rennf93/fastapi-guard · 72 tokens

emil-design-eng

This skill encodes Emil Kowalski's philosophy on UI polish, component design, animation decisions, and the invisible details that make software feel great.

MODSetter/SurfSense · 35 tokens

playwright-testing

Use when writing Playwright tests, fixing flaky tests, debugging failures, implementing Page Object Model, configuring CI/CD, optimizing performance, mocking APIs, handling authentication or OAuth, testing accessibility (axe-core), file uploads/downloads, date/time mocking, WebSockets, geolocation, permissions…

MODSetter/SurfSense · 211 tokens

content-quality-auditor

Publish-readiness gate: 80-item CORE-EEAT audit with weighted scoring, veto checks, and fix plan. 内容质量/EEAT评分.

MODSetter/SurfSense · 36 tokens

content-refresher

Refresh outdated posts with current stats, new sections, freshness signals to restore rankings. 内容更新/排名恢复.

MODSetter/SurfSense · 26 tokens