plugins marketplace
← All plugins

dcode-agent-kit

v0.1.0

Scaffold a Deep Agents (LangChain) agent or a dcode CLI agent from one command (/new-dcode-agent). The agents it builds work with any OpenAI-compatible provider.

Claude Code1 skill

by Elia AlbertiMIT52updated 1 month ago

Source

git clone https://github.com/EliaAlberti/dcode-agent-kit

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

dcode-agent-kit/
├── .claude-plugin/plugin.json
└── skills/new-dcode-agent/SKILL.md

Skills1

new-dcode-agentskills/new-dcode-agent/SKILL.md

Scaffold a new Deep Agents (LangChain) agent, a dcode CLI agent, or both, from one command. Use ONLY when the user explicitly runs /new-dcode-agent; never auto-trigger. It interviews the user (form, name, purpose, tools, model, safety), shows a spec, and on confirmation writes a self-contained agent into the user's current project (and/or a dcode CLI agent under ~/.deepagents). The agents it writes work with any OpenAI-compatible API via environment variables.

Manifests1

.claude-plugin/plugin.json
{
  "name": "dcode-agent-kit",
  "description": "Scaffold a Deep Agents (LangChain) agent or a dcode CLI agent from one command (/new-dcode-agent). The agents it builds work with any OpenAI-compatible provider.",
  "version": "0.1.0",
  "author": {
    "name": "Elia Alberti"
  },
  "homepage": "https://github.com/EliaAlberti/dcode-agent-kit",
  "repository": "https://github.com/EliaAlberti/dcode-agent-kit",
  "license": "MIT"
}