cc-codeconductor 0.2.5 → 0.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/README.md +24 -24
  2. package/dist/index.js +1150 -1065
  3. package/package.json +4 -2
  4. package/policy.yml +22 -2
  5. package/presets/claude/skills/api-versioning/SKILL.md +8 -2
  6. package/presets/claude/skills/django-orm/SKILL.md +7 -1
  7. package/presets/claude/skills/django-testing/SKILL.md +7 -1
  8. package/presets/claude/skills/jpa-postgres/SKILL.md +8 -2
  9. package/presets/claude/skills/python/SKILL.md +7 -1
  10. package/presets/claude/skills/python-django-stack/SKILL.md +7 -1
  11. package/presets/claude/skills/python-fastapi-stack/SKILL.md +7 -1
  12. package/presets/claude/skills/spring-boot-feature/SKILL.md +8 -2
  13. package/presets/claude/skills/spring-boot-kotlin/SKILL.md +8 -2
  14. package/presets/claude/skills/sqlalchemy/SKILL.md +7 -1
  15. package/presets/claude/skills/testing-strategy/SKILL.md +8 -2
  16. package/presets/codex/skills/api-versioning/SKILL.md +8 -2
  17. package/presets/codex/skills/django-orm/SKILL.md +7 -1
  18. package/presets/codex/skills/django-testing/SKILL.md +7 -1
  19. package/presets/codex/skills/jpa-postgres/SKILL.md +8 -2
  20. package/presets/codex/skills/python/SKILL.md +7 -1
  21. package/presets/codex/skills/python-django-stack/SKILL.md +7 -1
  22. package/presets/codex/skills/python-fastapi-stack/SKILL.md +7 -1
  23. package/presets/codex/skills/spring-boot-feature/SKILL.md +8 -2
  24. package/presets/codex/skills/spring-boot-kotlin/SKILL.md +8 -2
  25. package/presets/codex/skills/sqlalchemy/SKILL.md +7 -1
  26. package/presets/codex/skills/testing-strategy/SKILL.md +8 -2
  27. package/presets/opencode/agents/architect.md +3 -0
  28. package/presets/opencode/agents/docs.md +3 -0
  29. package/presets/opencode/agents/implementer.md +7 -4
  30. package/presets/opencode/agents/orchestrator.md +3 -0
  31. package/presets/opencode/agents/repo-explorer.md +3 -0
  32. package/presets/opencode/agents/reviewer.md +3 -0
  33. package/presets/opencode/agents/task-coach.md +3 -0
  34. package/presets/opencode/agents/tester.md +3 -0
  35. package/presets/opencode/skills/api-versioning/SKILL.md +8 -2
  36. package/presets/opencode/skills/astro/SKILL.md +7 -1
  37. package/presets/opencode/skills/code-review/SKILL.md +7 -1
  38. package/presets/opencode/skills/django-orm/SKILL.md +7 -1
  39. package/presets/opencode/skills/django-testing/SKILL.md +7 -1
  40. package/presets/opencode/skills/django-uv/SKILL.md +7 -1
  41. package/presets/opencode/skills/jpa-postgres/SKILL.md +8 -2
  42. package/presets/opencode/skills/nextjs-typescript/SKILL.md +7 -1
  43. package/presets/opencode/skills/python/SKILL.md +7 -1
  44. package/presets/opencode/skills/python-django-stack/SKILL.md +7 -1
  45. package/presets/opencode/skills/python-fastapi-stack/SKILL.md +7 -1
  46. package/presets/opencode/skills/security/SKILL.md +7 -1
  47. package/presets/opencode/skills/spring-boot-feature/SKILL.md +8 -2
  48. package/presets/opencode/skills/spring-boot-kotlin/SKILL.md +8 -2
  49. package/presets/opencode/skills/spring-boot-testing-strategy/SKILL.md +7 -1
  50. package/presets/opencode/skills/sqlalchemy/SKILL.md +7 -1
  51. package/presets/opencode/skills/testing-tdd/SKILL.md +7 -1
  52. package/src/presets/manifests/cursor.yml +9 -0
  53. package/src/presets/manifests/gemini.yml +9 -0
  54. package/src/presets/models/claude.yml +60 -1
  55. package/src/presets/models/codex.yml +60 -1
  56. package/src/presets/models/cursor.yml +96 -0
  57. package/src/presets/models/gemini.yml +96 -0
  58. package/src/presets/models/opencode.yml +60 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-codeconductor",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "A multi-agent orchestration framework for AI-assisted software engineering workflows.",
5
5
  "keywords": [
6
6
  "ai",
@@ -9,7 +9,9 @@
9
9
  "workflow",
10
10
  "opencode",
11
11
  "claude",
12
- "codex"
12
+ "codex",
13
+ "gemini",
14
+ "cursor"
13
15
  ],
14
16
  "license": "MIT",
15
17
  "files": [
package/policy.yml CHANGED
@@ -60,7 +60,8 @@ targets:
60
60
  - "denyWrite"
61
61
  - "runtime.network.allowDomains"
62
62
  warnings:
63
- - "Claude settings primarily represent shell permissions; filesystem and network boundaries depend on Claude Code capabilities and manual isolation."
63
+ - "Claude settings primarily represent shell permissions; filesystem and network boundaries depend on Claude Code
64
+ capabilities and manual isolation."
64
65
  codex:
65
66
  unsupportedRules:
66
67
  - "denyRead"
@@ -68,7 +69,26 @@ targets:
68
69
  - "runtime.network"
69
70
  - "commands"
70
71
  warnings:
71
- - "Codex preset currently represents policy intent through AGENTS.md contracts; runtime enforcement depends on Codex capabilities."
72
+ - "Codex preset currently represents policy intent through AGENTS.md contracts; runtime enforcement depends on
73
+ Codex capabilities."
74
+ gemini:
75
+ unsupportedRules:
76
+ - "denyRead"
77
+ - "denyWrite"
78
+ - "runtime.network"
79
+ - "commands"
80
+ warnings:
81
+ - "Gemini CLI preset currently represents policy intent through agent files; runtime enforcement depends on Gemini
82
+ CLI capabilities."
83
+ cursor:
84
+ unsupportedRules:
85
+ - "denyRead"
86
+ - "denyWrite"
87
+ - "runtime.network"
88
+ - "commands"
89
+ warnings:
90
+ - "Cursor preset currently represents policy intent through agent files; runtime enforcement depends on Cursor
91
+ capabilities."
72
92
 
73
93
  commands:
74
94
  allow:
@@ -2,12 +2,18 @@
2
2
  id: api-versioning
3
3
  version: 1.0.0
4
4
  name: API Versioning
5
- description:
5
+ description: >
6
6
  Provides expert knowledge for designing, implementing, and managing REST API
7
7
  versioning strategies with deprecation workflows.
8
8
 
9
+ user-invokable: true
10
+ license: MIT
11
+ metadata:
12
+ author: lgzarturo
13
+ category: api
14
+
9
15
  compatibility:
10
- tools: [claude, codex, opencode]
16
+ tools: [claude, codex, gemini, agy, opencode]
11
17
  stacks:
12
18
  languages: [kotlin, java, typescript, python, go]
13
19
  frameworks: [spring-boot, spring-mvc, express, fastapi]
@@ -7,8 +7,14 @@ description: >
7
7
  bulk operations, transactions, and multi-schema upload paths.
8
8
  Trigger: When writing queryset logic, model saves, or DB-touching service code.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: django
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, django-tenants]
@@ -7,8 +7,14 @@ description: >
7
7
  RequestFactory, and mocks. No factories, no complex conftest.
8
8
  Trigger: When writing or reviewing tests in any apps/ directory.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: testing
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, pytest-django, django-tenants]
@@ -2,12 +2,18 @@
2
2
  id: jpa-postgres
3
3
  version: 1.0.0
4
4
  name: JPA + PostgreSQL
5
- description:
5
+ description: >
6
6
  Provides expert knowledge of JPA entity design, relationship mapping, Flyway
7
7
  migrations, and PostgreSQL-specific optimizations.
8
8
 
9
+ user-invokable: true
10
+ license: MIT
11
+ metadata:
12
+ author: lgzarturo
13
+ category: database
14
+
9
15
  compatibility:
10
- tools: [claude, codex, opencode]
16
+ tools: [claude, codex, gemini, agy, opencode]
11
17
  stacks:
12
18
  languages: [kotlin, java]
13
19
  frameworks: [spring-boot, spring-data-jpa, hibernate]
@@ -7,8 +7,14 @@ description: >
7
7
  type hints, decorators, context managers, and architecture.
8
8
  Trigger: When writing Python code anywhere in the project.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: python
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, fastapi, flask]
@@ -7,8 +7,14 @@ description: >
7
7
  views, services, naming, JSON APIs, PDFs, and cart patterns.
8
8
  Trigger: When writing any view, service, API endpoint, or model code in apps/.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: django
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, django-tenants, django-rest-framework, reportlab]
@@ -7,8 +7,14 @@ description: >
7
7
  injection, error handling, pagination, and project structure.
8
8
  Trigger: When writing any router, endpoint, schema, or dependency in a FastAPI project.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: fastapi
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [fastapi, pydantic, uvicorn, httpx]
@@ -2,13 +2,19 @@
2
2
  id: spring-boot-feature
3
3
  version: 1.0.0
4
4
  name: Spring Boot Feature Creation
5
- description:
5
+ description: >
6
6
  Guides the creation of complete Spring Boot features following a structured,
7
7
  layer-by-layer workflow: entity, repository, service, controller, and tests.
8
8
  Applies Kotlin idioms, Bean Validation, and MockK test patterns throughout.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: spring
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [kotlin]
14
20
  frameworks: [spring-boot, spring-mvc, spring-data-jpa, mockk, junit5]
@@ -2,12 +2,18 @@
2
2
  id: spring-boot-kotlin
3
3
  version: 1.0.0
4
4
  name: Spring Boot + Kotlin
5
- description:
5
+ description: >
6
6
  Provides expert knowledge of Spring Boot conventions, Kotlin idioms, and MVC
7
7
  patterns for backend API development.
8
8
 
9
+ user-invokable: true
10
+ license: MIT
11
+ metadata:
12
+ author: lgzarturo
13
+ category: spring
14
+
9
15
  compatibility:
10
- tools: [claude, codex, opencode]
16
+ tools: [claude, codex, gemini, agy, opencode]
11
17
  stacks:
12
18
  languages: [kotlin]
13
19
  frameworks: [spring-boot, spring-mvc, spring-data-jpa, spring-security]
@@ -7,8 +7,14 @@ description: >
7
7
  bulk operations, transactions, and Alembic migrations.
8
8
  Trigger: When writing models, queries, bulk operations, or DB-touching service code.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: database
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [sqlalchemy, alembic, asyncpg, fastapi]
@@ -2,13 +2,19 @@
2
2
  id: testing-strategy
3
3
  version: 1.0.0
4
4
  name: Testing Strategy
5
- description:
5
+ description: >
6
6
  Provides expert knowledge of the testing pyramid, test design principles,
7
7
  MockK patterns, and integration testing conventions for Spring Boot + Kotlin
8
8
  projects.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: testing
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [kotlin, java]
14
20
  frameworks: [spring-boot, junit5, mockk, testcontainers, assertj]
@@ -2,12 +2,18 @@
2
2
  id: api-versioning
3
3
  version: 1.0.0
4
4
  name: API Versioning
5
- description:
5
+ description: >
6
6
  Provides expert knowledge for designing, implementing, and managing REST API
7
7
  versioning strategies with deprecation workflows.
8
8
 
9
+ user-invokable: true
10
+ license: MIT
11
+ metadata:
12
+ author: lgzarturo
13
+ category: api
14
+
9
15
  compatibility:
10
- tools: [claude, codex, opencode]
16
+ tools: [claude, codex, gemini, agy, opencode]
11
17
  stacks:
12
18
  languages: [kotlin, java, typescript, python, go]
13
19
  frameworks: [spring-boot, spring-mvc, express, fastapi]
@@ -7,8 +7,14 @@ description: >
7
7
  bulk operations, transactions, and multi-schema upload paths.
8
8
  Trigger: When writing queryset logic, model saves, or DB-touching service code.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: django
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, django-tenants]
@@ -7,8 +7,14 @@ description: >
7
7
  RequestFactory, and mocks. No factories, no complex conftest.
8
8
  Trigger: When writing or reviewing tests in any apps/ directory.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: testing
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, pytest-django, django-tenants]
@@ -2,12 +2,18 @@
2
2
  id: jpa-postgres
3
3
  version: 1.0.0
4
4
  name: JPA + PostgreSQL
5
- description:
5
+ description: >
6
6
  Provides expert knowledge of JPA entity design, relationship mapping, Flyway
7
7
  migrations, and PostgreSQL-specific optimizations.
8
8
 
9
+ user-invokable: true
10
+ license: MIT
11
+ metadata:
12
+ author: lgzarturo
13
+ category: database
14
+
9
15
  compatibility:
10
- tools: [claude, codex, opencode]
16
+ tools: [claude, codex, gemini, agy, opencode]
11
17
  stacks:
12
18
  languages: [kotlin, java]
13
19
  frameworks: [spring-boot, spring-data-jpa, hibernate]
@@ -7,8 +7,14 @@ description: >
7
7
  type hints, decorators, context managers, and architecture.
8
8
  Trigger: When writing Python code anywhere in the project.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: python
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, fastapi, flask]
@@ -7,8 +7,14 @@ description: >
7
7
  views, services, naming, JSON APIs, PDFs, and cart patterns.
8
8
  Trigger: When writing any view, service, API endpoint, or model code in apps/.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: django
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [django, django-tenants, django-rest-framework, reportlab]
@@ -7,8 +7,14 @@ description: >
7
7
  injection, error handling, pagination, and project structure.
8
8
  Trigger: When writing any router, endpoint, schema, or dependency in a FastAPI project.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: fastapi
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [fastapi, pydantic, uvicorn, httpx]
@@ -2,13 +2,19 @@
2
2
  id: spring-boot-feature
3
3
  version: 1.0.0
4
4
  name: Spring Boot Feature Creation
5
- description:
5
+ description: >
6
6
  Guides the creation of complete Spring Boot features following a structured,
7
7
  layer-by-layer workflow entity, repository, service, controller, and tests.
8
8
  Applies Kotlin idioms, Bean Validation, and MockK test patterns throughout.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: spring
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [kotlin]
14
20
  frameworks: [spring-boot, spring-mvc, spring-data-jpa, mockk, junit5]
@@ -2,12 +2,18 @@
2
2
  id: spring-boot-kotlin
3
3
  version: 1.0.0
4
4
  name: Spring Boot + Kotlin
5
- description:
5
+ description: >
6
6
  Provides expert knowledge of Spring Boot conventions, Kotlin idioms, and MVC
7
7
  patterns for backend API development.
8
8
 
9
+ user-invokable: true
10
+ license: MIT
11
+ metadata:
12
+ author: lgzarturo
13
+ category: spring
14
+
9
15
  compatibility:
10
- tools: [claude, codex, opencode]
16
+ tools: [claude, codex, gemini, agy, opencode]
11
17
  stacks:
12
18
  languages: [kotlin]
13
19
  frameworks: [spring-boot, spring-mvc, spring-data-jpa, spring-security]
@@ -7,8 +7,14 @@ description: >
7
7
  bulk operations, transactions, and Alembic migrations.
8
8
  Trigger: When writing models, queries, bulk operations, or DB-touching service code.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: database
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [python]
14
20
  frameworks: [sqlalchemy, alembic, asyncpg, fastapi]
@@ -2,13 +2,19 @@
2
2
  id: testing-strategy
3
3
  version: 1.0.0
4
4
  name: Testing Strategy
5
- description:
5
+ description: >
6
6
  Provides expert knowledge of the testing pyramid, test design principles,
7
7
  MockK patterns, and integration testing conventions for Spring Boot + Kotlin
8
8
  projects.
9
9
 
10
+ user-invokable: true
11
+ license: MIT
12
+ metadata:
13
+ author: lgzarturo
14
+ category: testing
15
+
10
16
  compatibility:
11
- tools: [claude, codex, opencode]
17
+ tools: [claude, codex, gemini, agy, opencode]
12
18
  stacks:
13
19
  languages: [kotlin, java]
14
20
  frameworks: [spring-boot, junit5, mockk, testcontainers, assertj]
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: architect
2
3
  description:
3
4
  Designs the technical approach for a task — produces ADRs, module boundaries,
4
5
  and API contracts — so the Implementer has a reviewed plan before touching
@@ -6,6 +7,8 @@ description:
6
7
  mode: subagent
7
8
  model: "{{MODEL}}"
8
9
  temperature: 0.1
10
+ maxTurns: 80
11
+ tools: Read, Glob, Grep
9
12
  permission:
10
13
  read: allow
11
14
  edit:
@@ -1,10 +1,13 @@
1
1
  ---
2
+ name: docs
2
3
  description:
3
4
  Updates README, OpenAPI specs, ADRs, and CHANGELOG to reflect what was
4
5
  actually implemented — reads the diff first, writes only what changed.
5
6
  mode: subagent
6
7
  model: "{{MODEL}}"
7
8
  temperature: 0.1
9
+ maxTurns: 30
10
+ tools: Read, Write, Edit, Glob, Grep
8
11
  permission:
9
12
  read: allow
10
13
  edit:
@@ -1,10 +1,13 @@
1
1
  ---
2
+ name: implementer
2
3
  description:
3
4
  Writes the code that the Architect planned — minimal diff, no scope creep, no
4
5
  invented architecture — and runs tests before declaring done.
5
6
  mode: subagent
6
7
  model: "{{MODEL}}"
7
8
  temperature: 0.1
9
+ maxTurns: 100
10
+ tools: Read, Write, Edit, Bash, Glob, Grep
8
11
  permission:
9
12
  read: allow
10
13
  edit: allow
@@ -39,8 +42,8 @@ invent an approach and proceed. The plan exists to prevent exactly that.
39
42
  ## Before Writing Any Code
40
43
 
41
44
  0. Create a Git Worktree for this session before opening any file for editing:
42
- `git worktree add ../<branch>-session <branch>`
43
- All changes happen inside this worktree. Never modify the main working tree directly.
45
+ `git worktree add ../<branch>-session <branch>` All changes happen inside
46
+ this worktree. Never modify the main working tree directly.
44
47
  1. Read the Technical Plan completely.
45
48
  2. Read each file listed under "Files Affected."
46
49
  3. Understand the existing patterns in those files — naming, error handling,
@@ -50,8 +53,8 @@ invent an approach and proceed. The plan exists to prevent exactly that.
50
53
 
51
54
  ## Implementation Rules
52
55
 
53
- **Work in a worktree.** Create a session worktree before touching any file.
54
- All edits happen inside it. Include the worktree path in the Implementation Summary.
56
+ **Work in a worktree.** Create a session worktree before touching any file. All
57
+ edits happen inside it. Include the worktree path in the Implementation Summary.
55
58
 
56
59
  **Minimal diff.** Change only what the Technical Plan specifies. If you notice
57
60
  something unrelated that could be improved, do not fix it. Log it as a
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: orchestrator
2
3
  description:
3
4
  Coordinates the end-to-end workflow — receives a Task Card, selects the
4
5
  routing path, delegates to the right Conductor Agents, and monitors completion
@@ -6,6 +7,8 @@ description:
6
7
  mode: primary
7
8
  model: "{{MODEL}}"
8
9
  temperature: 0.1
10
+ maxTurns: 60
11
+ tools: Read, Glob, Grep, Bash
9
12
  permission:
10
13
  read: allow
11
14
  edit: deny
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: repo-explorer
2
3
  description:
3
4
  Maps the repository structure, identifies conventions, locates relevant files,
4
5
  and estimates the impact radius of a proposed change — read-only, never
@@ -6,6 +7,8 @@ description:
6
7
  mode: subagent
7
8
  model: "{{MODEL}}"
8
9
  temperature: 0.1
10
+ maxTurns: 35
11
+ tools: Read, Glob, Grep, Bash
9
12
  permission:
10
13
  read: allow
11
14
  edit: deny
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: reviewer
2
3
  description:
3
4
  Reviews the implementation diff for correctness, architecture alignment,
4
5
  security issues, and scope creep — produces structured findings categorized as
@@ -6,6 +7,8 @@ description:
6
7
  mode: subagent
7
8
  model: "{{MODEL}}"
8
9
  temperature: 0.1
10
+ maxTurns: 40
11
+ tools: Read, Glob, Grep, Bash
9
12
  permission:
10
13
  read: allow
11
14
  edit: deny
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: task-coach
2
3
  description:
3
4
  Transforms vague requests into complete, routable Task Cards by asking
4
5
  targeted clarifying questions and enforces the Task Card standard before any
@@ -6,6 +7,8 @@ description:
6
7
  mode: subagent
7
8
  model: "{{MODEL}}"
8
9
  temperature: 0.1
10
+ maxTurns: 30
11
+ tools: Read, Glob, Grep
9
12
  permission:
10
13
  read: allow
11
14
  edit: deny
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: tester
2
3
  description:
3
4
  Generates unit, integration, and contract tests that verify the acceptance
4
5
  criteria — writes tests that fail first, then confirms they pass after
@@ -6,6 +7,8 @@ description:
6
7
  mode: subagent
7
8
  model: "{{MODEL}}"
8
9
  temperature: 0.1
10
+ maxTurns: 60
11
+ tools: Read, Write, Edit, Bash, Glob, Grep
9
12
  permission:
10
13
  read: allow
11
14
  edit:
@@ -2,12 +2,18 @@
2
2
  id: api-versioning
3
3
  version: 1.0.0
4
4
  name: API Versioning
5
- description:
5
+ description: >
6
6
  Provides expert knowledge for designing, implementing, and managing REST API
7
7
  versioning strategies with deprecation workflows.
8
8
 
9
+ user-invokable: true
10
+ license: MIT
11
+ metadata:
12
+ author: lgzarturo
13
+ category: api
14
+
9
15
  compatibility:
10
- tools: [claude, codex, opencode]
16
+ tools: [claude, codex, gemini, agy, opencode]
11
17
  stacks:
12
18
  languages: [kotlin, java, typescript, python, go]
13
19
  frameworks: [spring-boot, spring-mvc, express, fastapi]
@@ -5,8 +5,14 @@ name: Astro
5
5
  description: >
6
6
  Provides expert knowledge for building Astro 5+ sites with Islands Architecture, Content Collections, TypeScript, and performance-first rendering strategies.
7
7
 
8
+ user-invokable: true
9
+ license: MIT
10
+ metadata:
11
+ author: lgzarturo
12
+ category: frontend
13
+
8
14
  compatibility:
9
- tools: [claude, codex, opencode]
15
+ tools: [claude, codex, gemini, agy, opencode]
10
16
  stacks:
11
17
  languages: []
12
18
  frameworks: []