Proxify's Claude Code acceleration toolkit. Skills, agents, and guides for agentic engineering.
# Install all skills
npx skills add proxify-dev/Claude-Code
# Install a specific skill
npx skills add proxify-dev/Claude-Code@skill-architecture
npx skills add proxify-dev/Claude-Code@agent-development- Install Claude Code
- Install Proxify skills:
npx skills add proxify-dev/Claude-Code - Write your project's CLAUDE.md
- Learn the workflow patterns
| Skill | Description |
|---|---|
| skill-architecture | How to design skills that reach agents at the right time. Covers context efficiency, distribution layers, and framing. |
| agent-development | Agent structure, system prompts, triggering conditions, and MCP server configuration for Claude Code. |
- Installation — Install and launch Claude Code
- First Session — What to do when you start
- Key Concepts — CLAUDE.md, Skills, Agents, Hooks, MCP
- Quick Wins — Get productive in 10 minutes
- Writing CLAUDE.md — The highest-leverage config surface
- Workflow Patterns — Plan-execute, TDD, review, refactoring
- Context Management — Stay effective in long sessions
- Effective Prompting — Communication patterns that work
- Agentic Engineering — From AI assistance to delegation
- Overview — What skills are and how they work
- Using Skills — Install and browse skills
- Creating Skills — Build your own skill
- Distributing Skills — Share skills with others
- Overview — What agents are and when to use them
- Creating Agents — Build custom agents
- Agent Patterns — Common agent architectures
- Glossary — Key terms explained
- Links & Resources — Curated external links
- Common Pitfalls — Mistakes to avoid
This repo is a Claude Code plugin. It distributes:
- Skills (
skills/) — installed vianpx skills add - Agents (
agents/) — bundled subagents (coming soon) - Docs (
docs/) — guides and references for engineers
Claude-Code/
├── .claude-plugin/plugin.json # Plugin manifest
├── skills/ # Distributable skills
├── agents/ # Bundled agents (future)
└── docs/ # Guides and resources
├── getting-started/
├── guides/
├── skills/
├── agents/
└── reference/
- Create
skills/<skill-name>/SKILL.mdwith valid frontmatter - Add
references/for deep content - Submit a PR — becomes installable via
npx skills add proxify-dev/Claude-Code@<skill-name>
- Create
agents/<agent-name>.mdwith frontmatter (name, description, model, color) - Write the system prompt as the markdown body
- Submit a PR
- Add a markdown file to the appropriate
docs/subdirectory - Update this README with a link
- Submit a PR