Init project
95+ agent skills, 19 UI components, 7 system prompts from Claude Fable 5, GPT-5.5, Gemini CLI & more. Self-fine-tune your agent: paste one prompt and it reads every skill, internalizes patterns, and becomes elite. Works with Claude Code, Codex, Cursor, OpenCode + 60 more agents.
npx -y skills add subhansh-dev/agent-maxxing --skill init-projectAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Initialize a project's CLAUDE.md / AGENTS.md by analyzing the codebase architecture, commands, and conventions.
SKILL.md
1.6 KB, as published. Nobody here has run it
Init Project — Create Agent Configuration
Extracted from Claude Code's bundled init skill.
Analyze the codebase and create a CLAUDE.md (or AGENTS.md) file for future agent sessions.
What to Add
-
Commands — how to build, lint, run tests (including single test). Include the necessary commands to develop in this codebase.
-
Architecture — high-level code architecture and structure. Focus on the "big picture" that requires reading multiple files to understand.
Rules
- Do not repeat yourself
- Do not include obvious instructions like "Provide helpful error messages" or "Write unit tests"
- Avoid listing every component or file structure that can be easily discovered
- Don't include generic development practices
- If there are Cursor rules, Copilot rules, or existing CLAUDE.md files, include the important parts
- If there is a README.md, include the important parts
- Do not make up "Common Development Tasks" or "Tips for Development" unless they exist in other files
File Format
# CLAUDE.md
This file provides guidance to Claude Code when working with code in this repository.
## Commands
- Build: `npm run build`
- Test: `npm test`
- Lint: `npm run lint`
- Single test: `npm test -- --grep "test name"`
## Architecture
[High-level description of how the codebase is organized]
## Key Patterns
[Important conventions, patterns, or decisions that future agents need to know]