Commit Graph

13 Commits

Author SHA1 Message Date
freemo 435e409df9 build: moved all sonnet agents to haiku 2026-04-18 12:33:27 -04:00
freemo 0257841825 Revert "refactor(agents): migrate all agent definitions to use skills for universal rules"
This reverts commit bb97f1450e.
2026-04-16 14:15:30 -04:00
freemo bb97f1450e refactor(agents): migrate all agent definitions to use skills for universal rules
Replace ~600 chars of verbatim per-agent boilerplate with skill references.
All 91 agents now load cleveragents-agent-rules for exhaustive pagination,
label management, bot signatures, and credential flow rules. Adds explicit
skill: "*": deny + targeted allows to every agent permission block, matching
the existing bash: and task: deny-first convention. Tier selectors carry no
skill permissions since they are pure pass-through with no skill references
in their bodies. forgejo-label-manager also grants forgejo-api for its curl
pattern reference.
2026-04-16 01:00:55 -04:00
clever-agent 93c349d531 Build: Stopped using codex for most of our agents 2026-04-16 00:51:51 -04:00
CleverAgents Build Agent 5a57eb9a07 Build: doom loops are detected and killed 2026-04-14 14:50:01 -04:00
CleverAgents Build Agent acb901abf1 Build: Refined some of the wording in the supervisors to get more reliable performance out of them. Made permissions stricter so we will get less circumvention of intended permissions 2026-04-14 14:15:43 -04:00
CleverAgents Build Agent 78cfdc9b1b Build: Improved merge, review, and implementor logic to have better and more clear priorities 2026-04-14 12:56:53 -04:00
CleverAgents Build Agent a0664ad662 Build: enforce pagination with agents 2026-04-13 20:47:32 -04:00
CleverAgents Build Agent ad069c2012 Build: Fixed forgejo tool permissions in the agents and fixed the label manager so it reliably works with org level labels 2026-04-13 19:45:22 -04:00
clever-agent 5a9aaa79ed Build: Reinforced label enforcement, and ensure implementation workers dont continue work on a mergable PR. 2026-04-13 13:54:43 -04:00
clever-agent 8692bb46e5 build: Refactored agent definitions to be simpler and less contention 2026-04-12 19:24:50 -04:00
clever-agent 5c584c1cab feat(agents): Harden label creation restrictions
- Block REST API endpoints for label creation at the bash level for all agents.
- Restrict `forgejo_create_label` and related MCP tools for all agents.
- Restrict `forgejo_add_issue_labels` to only the `forgejo-label-manager`.
- Ensure all label operations are centralized through the `forgejo-label-manager`.
- Update agent definitions to use the label manager instead of direct API calls or MCP tools for adding labels.

This prevents agents from creating new project-level labels and enforces the use of organization-level labels, resolving the issue of duplicate labels being created.
2026-04-09 16:53:48 +00:00
freemo 4591ae053d feat(agents): remove ca- prefix to make agents generic
- Rename 72 agent files: ca-{name}.md → {name}.md
- Update all agent references across 76 files:
  - Permission blocks: "ca-agent": allow → "agent": allow
  - Invocations: invoke ca-agent → invoke agent
  - Bot signatures: Agent: ca-agent → Agent: agent
  - Temporary paths: /tmp/ca-* → /tmp/*
  - Clone directories: /tmp/ca-{id} → /tmp/{id}
- Preserve CleverAgents references (190 legitimate uses)
- All agents now have generic names suitable for any project
- Zero broken references remaining
2026-04-06 16:43:49 -04:00