Claude-skill-registry dipeo-package-maintainer
Router skill for DiPeO runtime Python code (execution handlers, service architecture, domain models, LLM infrastructure). Use when task mentions node handlers, EventBus, ServiceRegistry, Envelope pattern, or domain logic. For simple tasks, handle directly; for complex work, escalate to dipeo-package-maintainer agent.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/dipeo-package-maintainer" ~/.claude/skills/majiayu000-claude-skill-registry-dipeo-package-maintainer && rm -rf "$T"
manifest:
skills/data/dipeo-package-maintainer/SKILL.mdsource content
DiPeO Package Maintainer Router
Domain: Runtime Python in
/dipeo/ (application, domain, infrastructure - EXCLUDING codegen and generated code).
Quick Decision: Skill or Agent?
✅ Handle Directly (This Skill)
- Simple changes: <20 lines, 1-2 files
- Read-only tasks: Understanding patterns, reviewing implementation
- Pattern lookup: Envelope usage, service registration examples
- Small fixes: Typos, minor refactors, simple handler tweaks
❌ Escalate to Agent
- New node handlers: Creating handlers with complex logic
- Service architecture: EventBus integration, ServiceRegistry configuration
- Domain model changes: Conversation management, memory strategies
- Multi-file refactoring: Affects >2 files or cross-layer changes
- Generated code issues: If generated APIs don't work, escalate to dipeo-codegen-pipeline first
Agent:
Task(dipeo-package-maintainer, "your detailed task description")
Documentation Sections (Load On-Demand)
Use
Skill(doc-lookup) with these anchors when you need detailed context:
Architecture & Ownership:
- Code layers and ownershipdocs/agents/package-maintainer.md#your-domain-of-expertise
- Service architecture, LLM integrationdocs/agents/package-maintainer.md#core-architectural-principles
Implementation:
- Node handlers, services, GraphQL resolversdocs/agents/package-maintainer.md#your-responsibilities
Patterns & Imports:
- Envelope, service registry, node handlersdocs/agents/package-maintainer.md#common-patterns
- Common importsdocs/agents/package-maintainer.md#key-import-paths
Escalation:
- When to escalatedocs/agents/package-maintainer.md#when-you-need-help-escalation-paths
Example doc-lookup call:
python .claude/skills/doc-lookup/scripts/section_search.py \ --query "envelope-pattern" \ --paths docs/agents/package-maintainer.md \ --top 1
Escalation to Other Agents
To dipeo-codegen-pipeline: Generated code issues, TypeScript specs, new node types, GraphQL schema To dipeo-backend: CLI commands, server config, database schema, MCP server
Typical Workflow
- Assess complexity: Simple pattern lookup vs. complex implementation
- If simple: Load relevant section via
, provide guidance or make small changeSkill(doc-lookup) - If complex: Escalate with
Task(dipeo-package-maintainer, "task details") - Generated code problems: First check if it's a generation issue → escalate to dipeo-codegen-pipeline