plugin.json 3.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "oac",
  3. "description": "OpenAgentsControl — multi-agent orchestration for Claude Code. Context-aware development with skills, subagents, parallel execution, and automated code review.",
  4. "version": "1.0.2",
  5. "author": {
  6. "name": "darrenhinde",
  7. "url": "https://github.com/darrenhinde"
  8. },
  9. "license": "MIT",
  10. "repository": "https://github.com/darrenhinde/OpenAgentsControl",
  11. "homepage": "https://github.com/darrenhinde/OpenAgentsControl#readme",
  12. "keywords": ["code-review", "tdd", "multi-agent", "context-aware", "task-management", "parallel-execution", "workflow"],
  13. "skills": [
  14. { "name": "using-oac", "description": "Establishes how to find and use OAC skills", "path": "skills/using-oac/SKILL.md" },
  15. { "name": "context-discovery", "description": "Discover coding standards and project conventions before implementation", "path": "skills/context-discovery/SKILL.md" },
  16. { "name": "external-research", "description": "Fetch external library/framework documentation before writing code", "path": "skills/external-research/SKILL.md" },
  17. { "name": "task-breakdown", "description": "Break complex features into subtasks with dependency tracking", "path": "skills/task-breakdown/SKILL.md" },
  18. { "name": "code-execution", "description": "Execute a coding subtask from a JSON task file", "path": "skills/code-execution/SKILL.md" },
  19. { "name": "test-generation", "description": "Write comprehensive tests following project testing standards", "path": "skills/test-generation/SKILL.md" },
  20. { "name": "code-review", "description": "Review code for security, correctness, and quality", "path": "skills/code-review/SKILL.md" },
  21. { "name": "context-setup", "description": "Install context files from registry", "path": "skills/context-setup/SKILL.md" },
  22. { "name": "debugger", "description": "Systematic debugging before proposing fixes", "path": "skills/debugger/SKILL.md" },
  23. { "name": "oac-approach", "description": "Plan before implementation — discover context and propose approach", "path": "skills/oac-approach/SKILL.md" },
  24. { "name": "parallel-execution", "description": "Execute multiple independent subtasks simultaneously", "path": "skills/parallel-execution/SKILL.md" },
  25. { "name": "verification-before-completion", "description": "Verify work before claiming completion", "path": "skills/verification-before-completion/SKILL.md" }
  26. ],
  27. "commands": [
  28. { "name": "install-context", "description": "Download context files from the OAC registry", "path": "commands/install-context.md" },
  29. { "name": "oac:help", "description": "Show OAC usage guide", "path": "commands/oac-help.md" },
  30. { "name": "oac:status", "description": "Show plugin status and installed context", "path": "commands/oac-status.md" },
  31. { "name": "oac:cleanup", "description": "Clean up old temporary files", "path": "commands/oac-cleanup.md" },
  32. { "name": "brainstorm", "description": "Brainstorm ideas and approaches", "path": "commands/brainstorm.md" },
  33. { "name": "debug", "description": "Debug an issue systematically", "path": "commands/debug.md" }
  34. ]
  35. }