project-setup

project-setup is a skill for Claude Code, Codex from ErikaAX08/erikas-skills. It costs 55 tokens per session (4,670 once invoked), scanned A, original, MIT.

A guide for starting new software projects by choosing architecture rules and producing setup commands.

In plain words
What is it for?
Use it to plan a new project's structure, select applicable architecture guidance, and get commands for installing current libraries.
Why use it?
It avoids creating project files automatically or pinning dependencies to versions that may become outdated.

Skill for Claude CodeCodex

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

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is "install:all": "cd client && pnpm install && cd ../server && pip install -r requirements.txt".

Good fit Use it to plan a new project's structure, select applicable architecture guidance, and get commands for installing current libraries.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ErikaAX08/erikas-skills
agentmods
npx agentmods add skills/erikaax08/erikas-skills/project-setup

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/erikaax08/erikas-skills/project-setup/github.svg)](https://agentmods.dev/skills/erikaax08/erikas-skills/project-setup)
Your own site
<a href="https://agentmods.dev/skills/erikaax08/erikas-skills/project-setup"><img src="https://agentmods.dev/badge/skills/erikaax08/erikas-skills/project-setup/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.

agentmods 80×15 button for project-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/erikaax08/erikas-skills/project-setup"><img src="https://agentmods.dev/badge/skills/erikaax08/erikas-skills/project-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,670 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00055 $0.04670
Opus 5 $0.00028 $0.02335
Sonnet 5 $0.00011 $0.00934
Haiku 4.5 $0.00006 $0.00467

Measured 11d ago against content hash c97c4255a2ee, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

project-setup scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -o skills/frontend-architecture.md [URL_TO_SKILL]
project-setup/SKILL.md · 769 lines

How it starts

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

Project Setup Skill

Overview

This skill standardizes the initialization of new projects by always asking which architecture skills to apply and providing setup commands instead of generating the project directly. It ensures libraries are installed at their latest versions without hardcoding version numbers that may become outdated.

Keywords: project setup, initialization, scaffolding, new project, boilerplate, create project, setup commands, project structure

Critical Rules

Rule 1: Never Generate Project Files Directly

This skill must NEVER generate project files, create directories, or write code directly.

Instead, always provide the commands the user needs to run in their terminal. The user is responsible for executing these commands in their environment.

Rule 2: Never Hardcode Library Versions

Never specify exact version numbers for libraries or dependencies.

Always use the latest version by omitting the version number or using the appropriate syntax to get the latest:

# Correct - Always gets latest
pnpm add react
pnpm add @nestjs/core
pip install fastapi
composer require laravel/framework

# Incorrect - Version may be outdated
pnpm add [email protected]
pnpm add @nestjs/[email protected]
pip install fastapi==0.109.0
composer require laravel/framework:10.0.0

If the package manager requires a version or the user asks for a specific one, use version ranges:

# Only if necessary
pnpm add react@^18
pnpm add @nestjs/core@^10

Rule 3: Always Ask Which Architecture Skills to Apply

Before providing setup commands, always ask the user which architecture or standards skills they want to apply.

Rule 4: Prefer pnpm Over npm

For any Node.js / JavaScript / TypeScript project, default to pnpm instead of npm.

pnpm is faster, uses a content-addressable store to save disk space, and provides stricter, more reliable dependency resolution. Always provide pnpm commands by default and only fall back to npm (or yarn) if the user explicitly requests it.

Read the full file on GitHub · 769 lines

Files

What ships with it

1 file 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. 11d ago First seen · 769 lines · 55 tokens per session scan A c97c4255a2ee

Subscribe to this mod's changes

project-setup is a skill published in the GitHub repository ErikaAX08/erikas-skills (5 stars, last pushed 11d ago), licensed MIT. It adds 55 tokens to every session and 4,670 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

sdd-tasks

Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.

Gentleman-Programming/gentle-ai · 25 tokens

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

seedance-2-5

Generate 4-30 second cinematic video with ByteDance Seedance 2.5 through fal.ai, Volcengine Ark, Runway, or ComfyUI Partner Nodes. Use for long single generations, synchronized audio, and large multimodal reference sets (up to 30 images, 10 videos, and 10 audio clips). Also covers the 2.5 prompt contract: section…

calesthio/OpenMontage · 117 tokens

threejs-geometry

Three.js geometry creation - built-in shapes, BufferGeometry, custom geometry, instancing. Use when creating 3D shapes, working with vertices, building custom meshes, or optimizing with instanced rendering.

calesthio/OpenMontage · 46 tokens

lyria

Generate and validate music with Google Lyria 3 through the Gemini Interactions API. Use before calling OpenMontage googlemusic, designing Lyria 3 Clip or Pro prompts, using image-to-music or custom lyrics, choosing between Lyria 3 and Lyria RealTime, diagnosing Google music-generation failures, or preparing…

calesthio/OpenMontage · 76 tokens

debug-live

Guides root-cause investigations with debugging capabilities by setting breakpoints, starting a debug session, stepping through execution, inspecting variables, and tracing symptoms back to their origin. Prefer it for runtime bugs, failing tests, exceptions, crashes, hangs, wrong/null values, and unexpected output…

microsoft/DebugMCP · 84 tokens