Kit management for Claude Code
Project description
dot-agent-kit
Kit management system for Claude Code.
Installation
pip install dot-agent-kit
Usage
dot-agent --help
Creating Kits
Kit Structure
A kit is a collection of Claude Code artifacts (agents, skills, commands) distributed as a package. Each kit requires:
- kit.yaml - Manifest file with kit metadata and artifact paths
- Artifacts - The actual agent, skill, and command files
Namespace Pattern (Required)
All bundled kits must follow the namespace pattern:
{artifact_type}s/{kit_name}/...
This organizational pattern:
- Prevents naming conflicts when multiple kits are installed
- Makes it clear which kit an artifact belongs to
- Enables clean uninstallation of kit artifacts
- Keeps the
.claude/directory organized
Example structure:
my-kit/
├── kit.yaml
├── agents/
│ └── my-kit/
│ └── my-agent.md
└── skills/
└── my-kit/
├── tool-a/
│ └── SKILL.md
└── tool-b/
└── SKILL.md
Example kit.yaml:
name: my-kit
version: 1.0.0
description: My awesome Claude Code kit
artifacts:
agent:
- agents/my-kit/my-agent.md
skill:
- skills/my-kit/tool-a/SKILL.md
- skills/my-kit/tool-b/SKILL.md
Invocation Names vs File Paths
Important: Claude Code discovers artifacts by their filename/directory name, not the full path:
- Agents: Discovered by filename (e.g.,
agents/my-kit/helper.md→ invoked as "helper") - Skills: Discovered by directory name (e.g.,
skills/my-kit/pytest/SKILL.md→ invoked as "pytest") - Commands: Discovered by filename (e.g.,
commands/my-kit/build.md→ invoked as "/build")
The namespace directory (my-kit/) is organizational only - it doesn't become part of the invocation name.
Hyphenated naming convention: Artifacts should use hyphenated naming that combines the kit name with the artifact purpose (e.g., skills/devrun-make/SKILL.md → invoked as "devrun-make"). This is the standard pattern for bundled kits as it keeps the directory structure flat while maintaining clear namespacing. The directory name determines the invocation name.
Namespace Standards for Kit Types
Bundled kits (distributed with packages): Should follow hyphenated naming convention (e.g., skills/kit-name-tool/) to avoid naming conflicts and maintain clear organization.
Project-local artifacts (in .claude/ not from kits): Can use any naming structure. These are project-specific and not distributed.
Adopting Hyphenated Naming
To align with the standard hyphenated naming convention:
-
Flatten directory structure with hyphenated names:
# Example: Convert skills/devrun/make/ to skills/devrun-make/ mv skills/devrun/make skills/devrun-make mv skills/devrun/pytest skills/devrun-pytest
-
Update kit.yaml artifact paths:
artifacts: skill: - skills/devrun-make/SKILL.md # Was: skills/devrun/make/SKILL.md - skills/devrun-pytest/SKILL.md # Was: skills/devrun/pytest/SKILL.md
-
Test installation to verify paths are correct
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dot_agent_kit-0.1.23.tar.gz.
File metadata
- Download URL: dot_agent_kit-0.1.23.tar.gz
- Upload date:
- Size: 98.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c4312cb20890444f0ee4b77a7660da0e08e26a6d1e6e4f13100ba335971399d
|
|
| MD5 |
cb71e1b83b29952a7633d1b8e1aeafd9
|
|
| BLAKE2b-256 |
15559ffe4f6ecf70e25f9a317778ab973901d1f6191a487cc8c8dfdf856479d5
|
File details
Details for the file dot_agent_kit-0.1.23-py3-none-any.whl.
File metadata
- Download URL: dot_agent_kit-0.1.23-py3-none-any.whl
- Upload date:
- Size: 101.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
547b36359154c3377549ee681fc9ead48e7a6c7c7652c500c0dac05ff2085371
|
|
| MD5 |
19120135468ed1583def4baa3a11027f
|
|
| BLAKE2b-256 |
6acaf37f1f95b2996db7e731b40bb8d3823f40b4b85cb616ca5ab96c146e29e6
|