15285d228f27e67cc7b7b04cd34af01941f4a5eb
Switch the real 'Run agent' step to --format json (replacing the two TEMP/DEBUG schema-discovery commits da6f0d5/d0ddb06), capture the raw event stream, and reconstruct the plain-text reply from the assistant 'text' parts so the existing Publish logic is unchanged. Add a 'Build activity log' step that filters the event stream to tool_use (with truncated title/input) and text (reasoning) events. The Publish step posts that trail as a separate collapsible comment on the PR thread (dev agents only — comment-only roles do no tool calls). This is additive to the existing summary/PR-description comment. Reasoning reuse on a follow-up run is free: the existing 'fetch full issue thread' step already re-feeds all prior comments (including this new log comment) into the next run's prompt, so the agent sees what it did last time.
agents
Shared AI dev-team workflow for Gitea Actions, reusable across repos. It gives any repo the
@pm / @junior / @senior / @lead / @qa agents driven from issues and comments.
Use it in a repo
Add .gitea/workflows/ai-agent.yml to the consuming repo:
name: ai-agent
on:
issue_comment:
types: [created]
issues:
types: [opened]
jobs:
agent:
uses: ffaerber/agents/.gitea/workflows/agent.yml@main
secrets: inherit
That's the whole per-repo footprint. All the logic (agent registry, routing, delegation,
reactions, PR/issue plumbing) lives here in agent.yml.
Required secrets (per repo, or org-level for all)
| Secret | For |
|---|---|
ANTHROPIC_API_KEY |
@lead/@qa (and @pm/@senior if on Claude) |
OLLAMA_URL, OLLAMA_CLOUD_API_KEY |
local ornith / GLM cloud |
AGENT_TOKEN |
PAT (issue+repo write) used to post the delegation comment that fires the next agent |
TOKEN_PM,TOKEN_SENIOR,TOKEN_JUNIOR,TOKEN_LEAD,TOKEN_QA |
optional — post/commit as each agent's own Gitea user (falls back to the bot) |
GITEA_TOKEN is auto-provided. Tip: set these once at the org level so every repo inherits
them via secrets: inherit.
Also add to each consuming repo
AGENTS.md— the repo's own conventions (copyAGENTS.template.mdfrom here and adapt). The agent reads the caller repo'sAGENTS.md, so each repo can differ.- The bot users (
pm,senior,…) as collaborators (needed on private repos, and enables@nameautocomplete).
Maintaining
Change agent behavior once, here. Callers pin @main (or pin a tag for stability). History is the
changelog — see git log.
Languages
Shell
100%