Skip to content

Latest commit

 

History

History
137 lines (115 loc) · 6.21 KB

File metadata and controls

137 lines (115 loc) · 6.21 KB

Agent Kit

License: MIT

A collection of Claude Code and Codex plugins for enhanced AI-assisted development workflows.

Current Version: N/A

Table of Contents

Overview

This Agent Kit is a marketplace of Claude Code and Codex plugins that extend agent capabilities through specialized skills, hooks, and MCP Server components. The kit provides these components, organized into reusable plugins, to facilitate agent-assisted development tasks.

Quick Start

Claude Code

  1. In Claude Code, add this marketplace:

    /plugin marketplace add leefowlercu/agent-kit
  2. Install a plugin by using the following command (example for project-docs-reconciler):

    /plugin install project-docs-reconciler@leefowlercu-agent-kit
  3. Optionally, browse the available plugins interactively:

    /plugin

Codex

From this repository root, add the local Codex marketplace:

codex plugin marketplace add .

Codex reads the repo marketplace from .agents/plugins/marketplace.json. Restart Codex after adding or refreshing the marketplace, then install plugins from the plugin directory.

Available Plugins

Plugin Description Version
project-docs-reconciler Provides skills to initialize or reconcile project documentation (README.md, CLAUDE.md, subsystem docs) 0.2.0
op-secrets-manager Skills for interacting with 1Password through the op CLI 0.2.0
gtasks-todo-manager Manages to-dos across multiple Google accounts using the Google Tasks API 0.5.0
goalcraft Codex-only skill for crafting durable /goal objectives with validation loops 0.1.0

Repository Structure

agent-kit/
├── .claude-plugin/
│   ├── marketplace.json                    # Plugin marketplace catalog
│   └── README.md                           # Marketplace configuration docs
├── .agents/
│   └── plugins/
│       ├── marketplace.json                # Codex marketplace catalog
│       └── README.md                       # Codex marketplace docs
├── plugins/
│   ├── project-docs-reconciler/
│   │   ├── .claude-plugin/
│   │   │   └── plugin.json                 # Plugin metadata
│   │   ├── .codex-plugin/
│   │   │   └── plugin.json                 # Codex plugin metadata
│   │   ├── README.md                       # Plugin documentation
│   │   └── skills/
│   │       ├── claude-md/
│   │       │   └── SKILL.md                # CLAUDE.md reconciliation
│   │       ├── readme-md/
│   │       │   └── SKILL.md                # README.md reconciliation
│   │       └── subsystem-md/
│   │           └── SKILL.md                # Subsystem docs reconciliation
│   ├── op-secrets-manager/
│   │   ├── .claude-plugin/
│   │   │   └── plugin.json                 # Plugin metadata
│   │   ├── .codex-plugin/
│   │   │   └── plugin.json                 # Codex plugin metadata
│   │   ├── README.md                       # Plugin documentation
│   │   └── skills/
│   │       ├── op-secrets-reader/
│   │       │   ├── SKILL.md                # Main skill definition
│   │       │   ├── README.md               # Skill documentation
│   │       │   └── references/             # CLI and schema references
│   │       ├── op-secrets-creator/
│   │       │   ├── SKILL.md                # Main skill definition
│   │       │   ├── README.md               # Skill documentation
│   │       │   └── references/             # CLI and template references
│   │       ├── op-secrets-updater/
│   │       │   ├── SKILL.md                # Main skill definition
│   │       │   ├── README.md               # Skill documentation
│   │       │   └── references/             # CLI references
│   │       └── op-secrets-deleter/
│   │           ├── SKILL.md                # Main skill definition
│   │           ├── README.md               # Skill documentation
│   │           └── references/             # CLI references
│   ├── gtasks-todo-manager/
│   │   ├── .claude-plugin/
│   │   │   └── plugin.json                 # Plugin metadata
│   │   ├── .codex-plugin/
│   │   │   └── plugin.json                 # Codex plugin metadata
│   │   ├── README.md                       # Plugin documentation
│   │   └── skills/
│   │       └── gtasks-todo-manager/
│   │           ├── SKILL.md                # Google Tasks workflow hub
│   │           ├── README.md               # Skill documentation
│   │           ├── references/
│   │           │   ├── workflows/          # Workflow routing references
│   │           │   ├── operations/         # Self-contained operation guides
│   │           │   ├── api/                # Google Tasks API reference
│   │           │   └── schemas/            # JSON schemas
│   │           └── scripts/                # CLI and automation scripts
│   └── goalcraft/
│       ├── .codex-plugin/
│       │   └── plugin.json                 # Codex plugin metadata
│       ├── README.md                       # Plugin documentation
│       └── skills/
│           └── goalcraft/
│               ├── SKILL.md                # Goal planning workflow
│               └── agents/
│                   └── openai.yaml         # Skill UI metadata
└── LICENSE

License

This project is licensed under the MIT License. See LICENSE for details.