manage — ai-agents manage, community, ai-agents, ide skills, claude-agents, claude-code, claude-skills, codex-agents, codex-cli, Claude Code, Cursor

v1.0.0
GitHub

About this Skill

Ideal for AI Agents like Claude, AutoGPT, or LangChain requiring streamlined lifecycle management of agents and skills within the .claude/ directory. A collection of personal AI coding assistant configurations, specialist agents, and automated workflows optimized for Python and ML open-source development.

# Core Topics

Borda Borda
[2]
[0]
Updated: 2/26/2026

Agent Capability Analysis

The manage skill by Borda is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for ai-agents, claude-agents, claude-code.

Ideal Agent Persona

Ideal for AI Agents like Claude, AutoGPT, or LangChain requiring streamlined lifecycle management of agents and skills within the .claude/ directory.

Core Value

Empowers agents to efficiently create, update, and delete configurations with rich domain content, leveraging atomic updates and cross-reference propagation, while maintaining a synchronized MEMORY.md inventory using Python and ML open-source development tools.

Capabilities Granted for manage

Creating new agents with generated domain content
Updating existing skills with automated cross-reference propagation
Cleaning up deleted configurations with broken-reference cleanup

! Prerequisites & Limits

  • Requires access to the .claude/ directory
  • Limited to Python and ML open-source development
  • Needs MEMORY.md inventory for synchronization
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

manage

Install manage, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
<objective>

Manage the lifecycle of agents and skills in the .claude/ directory. Handles creation with rich domain content, atomic updates (renames) with cross-reference propagation, and clean deletion with broken-reference cleanup. Keeps the MEMORY.md inventory in sync with what actually exists on disk.

</objective> <inputs>
  • $ARGUMENTS: required, one of:
    • create agent <name> "description" — create a new agent with generated domain content
    • create skill <name> "description" — create a new skill with workflow scaffold
    • update agent <old-name> <new-name> — rename agent file + update all cross-refs
    • update skill <old-name> <new-name> — rename skill directory + update all cross-refs
    • delete agent <name> — delete agent file + clean broken refs
    • delete skill <name> — delete skill directory + clean broken refs
  • Names must be kebab-case (lowercase, hyphens only)
  • Descriptions must be quoted when they contain spaces

Agent examples:

  • /manage create agent security-auditor "Security specialist for vulnerability scanning and OWASP compliance"
  • /manage update agent ci-guardian ci-specialist
  • /manage delete agent old-agent-name

Skill examples:

  • /manage create skill benchmark "Benchmark orchestrator for measuring and comparing performance across commits"
  • /manage update skill optimize perf-audit
  • /manage delete skill old-skill
</inputs> <constants>
  • AGENTS_DIR: .claude/agents
  • SKILLS_DIR: .claude/skills
  • MEMORY_FILE: ~/.claude/projects/*/memory/MEMORY.md
  • USED_COLORS: blue, green, purple, lime, orange, yellow, cyan, red, teal, indigo, magenta, pink
  • AVAILABLE_COLORS: coral, gold, olive, navy, salmon, violet, maroon, aqua, brown
</constants> <workflow>

Step 1: Parse and validate

Extract operation, type, name, and optional arguments from $ARGUMENTS.

Validation rules:

  • Name must match ^[a-z][a-z0-9-]*$ (kebab-case)
  • For create: name must NOT already exist on disk
  • For update/delete: name MUST already exist on disk
  • For update: new-name must NOT already exist on disk
  • For create: description is required
bash
1# Check existence 2ls .claude/agents/<name>.md 2>/dev/null 3ls .claude/skills/<name>/SKILL.md 2>/dev/null

If validation fails, report the error and stop.

Step 2: Overlap review (create only)

Before creating anything, check if existing agents/skills already cover the requested functionality:

  1. Read descriptions of all existing agents (head -3 of each .md in agents/) and skills (head -3 of each SKILL.md)
  2. Compare the new description against each existing one — look for domain overlap, similar workflows, or redundant scope
  3. Present findings to the user:
    • No overlap: proceed to Step 3
    • Partial overlap: name the overlapping agent/skill, explain what it covers vs what the new one would add, and ask the user whether to proceed, extend the existing one instead, or abort
    • Strong overlap: recommend against creation — suggest using or extending the existing agent/skill instead

Skip this step for update and delete operations.

Step 3: Inventory current state

Snapshot the current roster for later comparison:

bash
1# Current agents 2ls .claude/agents/*.md | xargs -n1 basename | sed 's/\.md$//' | sort 3 4# Current skills 5ls -d .claude/skills/*/ | xargs -n1 basename | sort 6 7# Colors in use 8grep '^color:' .claude/agents/*.md

Step 4: Execute operation

Branch into one of six modes:

Mode: Create Agent

  1. Pick the first unused color from the AVAILABLE_COLORS pool (compare against colors found in Step 3)
  2. Choose model based on role complexity:
    • opusplan — plan-gated roles (solution-architect, oss-maintainer, self-mentor): long-horizon reasoning + plan mode
    • opus — complex implementation roles (sw-engineer, qa-specialist, ai-researcher, perf-optimizer): deep reasoning without plan mode
    • sonnet — focused execution roles (linting-expert, data-steward, ci-guardian, web-explorer, doc-scribe): pattern-matching, structured output
  3. Write the agent file with real domain content derived from the description:

Agent template — write to AGENTS_DIR/<name>.md:

---
name / description / tools / model / color (frontmatter)
---
<role> — 2-3 sentences establishing expertise from description
\<core_knowledge> — 2 subsections, 3-5 bullets each (domain-specific, not generic)

\</core_knowledge>

<workflow> — 5 numbered steps appropriate to the domain

</workflow>

\<notes> — 1-2 operational notes + cross-refs to related agents

\</notes>

Content rules: <role> and <workflow> use normal tags; all other sections use \<escaped> tags. Generate real domain content (80-120 lines total).

Mode: Create Skill

  1. Create the skill directory
  2. Write the skill file with workflow scaffold:
bash
1mkdir -p .claude/skills/<name>

Skill template — write to SKILLS_DIR/<name>/SKILL.md:

---
name / description / argument-hint / disable-model-invocation: true / allowed-tools (frontmatter)
---
<objective> — 2-3 sentences from description
<inputs> — $ARGUMENTS documentation
<workflow> — 3+ numbered steps with bash examples
<notes> — operational caveats

Content rules: No backslash escaping in skills (all normal XML tags). Generate real steps (40-60 lines total). Default allowed-tools to Read, Bash, Grep, Glob, Task unless writing files is needed.

Mode: Update Agent

Atomic update — write new file before deleting old:

bash
1# 1. Read the old file 2cat .claude/agents/<old-name>.md 3 4# 2. Write new file with updated name in frontmatter 5# (Edit the `name:` line in frontmatter to use new-name) 6 7# 3. Verify new file exists and is valid 8head -5 .claude/agents/<new-name>.md 9 10# 4. Delete old file only after new file is confirmed 11rm .claude/agents/<old-name>.md

Mode: Update Skill

Atomic update — create new directory before removing old:

bash
1# 1. Create new directory 2mkdir -p .claude/skills/<new-name> 3 4# 2. Copy SKILL.md with updated name in frontmatter 5# (Read old, edit name: line, write to new location) 6 7# 3. Verify new file exists 8head -5 .claude/skills/<new-name>/SKILL.md 9 10# 4. Remove old directory only after new is confirmed 11rm -r .claude/skills/<old-name>

Mode: Delete Agent

bash
1# Confirm existence before deleting 2ls .claude/agents/<name>.md 3rm .claude/agents/<name>.md

Mode: Delete Skill

bash
1# Confirm existence before deleting 2ls .claude/skills/<name>/SKILL.md 3rm -r .claude/skills/<name>

Step 5: Propagate cross-references

Search all .claude/ markdown files for the changed name and update references:

bash
1# Find all references to the name across agents and skills 2grep -rn "<name>" .claude/agents/*.md 3grep -rn "<name>" .claude/skills/*/SKILL.md

For update: Use the Edit tool to replace every occurrence of <old-name> with <new-name> in each file that references it.

For delete: Review each reference. If the deleted name appears in:

  • A cross-reference suggestion (e.g., "use X agent") — remove or replace with the closest alternative
  • An inventory list — remove the entry
  • A workflow spawn directive — flag for manual review

For create: No cross-ref propagation needed (new names have no existing references).

Step 6: Update memory/MEMORY.md

Regenerate the inventory lines from what actually exists on disk:

bash
1# Get current agent list 2ls .claude/agents/*.md | xargs -n1 basename | sed 's/\.md$//' | paste -sd', ' - 3 4# Get current skill list 5ls -d .claude/skills/*/ | xargs -n1 basename | paste -sd', ' -

Use the Edit tool to update these two lines in MEMORY.md:

  • - Agents: oss-maintainer, sw-engineer, ... (the roster line, not the path line)
  • - Skills: review, security, ...

Step 7: Update README.md

Update the agent or skill table in README.md:

  • create agent: add a new row to the ### Agents table — columns: | **name** | Short tagline | Key capabilities |
  • create skill: add a new row to the ### Skills table — columns: | **name** | \/name` | Description |`
  • update (rename): find and replace the old name in the table row with the new name
  • delete: remove the row for the deleted name

The README tables are self-documenting — keep descriptions concise (one line) and consistent in tone with the surrounding rows. Do not add/remove table columns.

Step 8: Verify integrity

Confirm no broken references remain:

bash
1# Extract all agent/skill names referenced in .claude/ files 2grep -rohE '[a-z]+-[a-z]+(-[a-z]+)*' .claude/agents/*.md \ 3 .claude/skills/*/SKILL.md | sort -u 4 5# Compare against actual files on disk 6ls .claude/agents/*.md | xargs -n1 basename | sed 's/\.md$//' 7ls -d .claude/skills/*/ | xargs -n1 basename

Use Grep to search for the specific changed name and confirm:

  • Update: zero hits for old name, appropriate hits for new name
  • Delete: zero hits for deleted name (or flagged references noted)
  • Create: new file exists with valid structure

Step 9: Audit

Run /audit to validate the created/modified file(s) and catch any issues introduced by this operation:

/audit

For a targeted check of only the affected file, spawn self-mentor directly:

  • For create: audit the new file for structural completeness, cross-ref validity, and content quality
  • For update: audit the renamed file and verify no stale references remain
  • For delete: audit remaining files for broken references to the deleted name

Include the audit findings in the final report. Do not proceed to sync if any critical findings remain.

Step 10: Summary report

Output a structured report containing:

  • Operation: what was done (create/update/delete + type + name)
  • Files Changed: table of file paths and actions (created/renamed/deleted/cross-ref updated)
  • Cross-References: count of files updated, broken refs cleaned
  • Current Roster: agents (N) and skills (N) with comma-separated names
  • Audit Result: audit findings (pass / issues found)
  • Follow-up: run /sync to propagate to ~/.claude/; for create review generated content; note if settings.json permissions might be needed
</workflow> <notes>
  • Atomic updates: always write-before-delete to prevent data loss on interruption
  • No settings.json auto-edit: this skill only mentions when new permissions might be needed — it does not mutate JSON files to avoid risky structural edits
  • README.md tables: Step 7 updates the agent/skill tables in the project README.md — keep the row format consistent with existing rows
  • Color pool: the AVAILABLE_COLORS list provides unused colors for new agents; if exhausted, reuse colors with a note
  • Cross-ref grep is broad: searches bare kebab-case names across all markdown files — catches backtick references, prose mentions, spawn directives, and inventory lists
  • MEMORY.md inventory: always regenerated from disk (ls), never manually calculated — this prevents drift
  • Follow-up chains:
    • After any create/update/delete → /audit to verify config integrity, then /sync apply to propagate
    • After creating a new agent/skill → /review to validate generated content quality
    • Recommended sequence: /manage <op>/audit/sync apply
</notes>

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is manage?

Ideal for AI Agents like Claude, AutoGPT, or LangChain requiring streamlined lifecycle management of agents and skills within the .claude/ directory. A collection of personal AI coding assistant configurations, specialist agents, and automated workflows optimized for Python and ML open-source development.

How do I install manage?

Run the command: npx killer-skills add Borda/.home. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for manage?

Key use cases include: Creating new agents with generated domain content, Updating existing skills with automated cross-reference propagation, Cleaning up deleted configurations with broken-reference cleanup.

Which IDEs are compatible with manage?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for manage?

Requires access to the .claude/ directory. Limited to Python and ML open-source development. Needs MEMORY.md inventory for synchronization.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Borda/.home. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use manage immediately in the current project.

Related Skills

Looking for an alternative to manage or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI