Skip to main content

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:

  1. kit.yaml - Manifest file with kit metadata and artifact paths
  2. 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:

  1. 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
    
  2. 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
    
  3. Test installation to verify paths are correct

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dot_agent_kit-0.1.22.tar.gz (99.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dot_agent_kit-0.1.22-py3-none-any.whl (101.6 kB view details)

Uploaded Python 3

File details

Details for the file dot_agent_kit-0.1.22.tar.gz.

File metadata

  • Download URL: dot_agent_kit-0.1.22.tar.gz
  • Upload date:
  • Size: 99.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.2

File hashes

Hashes for dot_agent_kit-0.1.22.tar.gz
Algorithm Hash digest
SHA256 865c9f1855c5af9e959c4168d883a8619e39b1e5b93752c8924c10c4a0451897
MD5 e0e528b81801b3ab5efa133c4e635473
BLAKE2b-256 a5f2dc3be4aeb20b482e14bf95c5392a8dc7b77225b24bec30c54997c4116c7c

See more details on using hashes here.

File details

Details for the file dot_agent_kit-0.1.22-py3-none-any.whl.

File metadata

File hashes

Hashes for dot_agent_kit-0.1.22-py3-none-any.whl
Algorithm Hash digest
SHA256 1469b80f1bc7f7751e2398a0bc8746d1bdb5bd29e8e506307d9f37b779107aee
MD5 5ac941cc64e5a5018be25796c91ef74b
BLAKE2b-256 574a509578913f0e7538578d669ae57b89c00d2fe49b689b403fb98f96cd84b7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page