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.
git clone --depth 1 https://github.com/ErikaAX08/erikas-skillsnpx agentmods add skills/erikaax08/erikas-skills/project-setupWrote 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.
[](https://agentmods.dev/skills/erikaax08/erikas-skills/project-setup)<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.
<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>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.
| Model | Per session | Once 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 |
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] 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.
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.
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.
- 11d ago First seen · 769 lines · 55 tokens per session scan A c97c4255a2ee
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.
Other skills, from other repositories
sdd-tasks
Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.
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…
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…
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.
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…
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…