mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
* chore(ai-workflow): track repo-managed review tooling * fix(ai-workflow): remove repo-specific path assumptions Make shared workflow hooks and APK testing guidance resolve paths from the repo and contributor environment so the tooling works for all contributors, not just one machine.
36 lines
1.4 KiB
TOML
36 lines
1.4 KiB
TOML
[agents]
|
|
max_threads = 8
|
|
max_depth = 1
|
|
|
|
[agents.browser-check]
|
|
description = "Browser verification agent for UI changes using playwright-cli on the local 5chan app."
|
|
config_file = "agents/browser-check.toml"
|
|
|
|
[agents.code-quality]
|
|
description = "Code quality agent that runs build, lint, and type-check, then fixes only issues surfaced by those checks."
|
|
config_file = "agents/code-quality.toml"
|
|
|
|
[agents.plan-implementer]
|
|
description = "Implementation-focused agent for scoped tasks from a parent plan."
|
|
config_file = "agents/plan-implementer.toml"
|
|
|
|
[agents.profiler]
|
|
description = "Performance profiling agent that inspects 5chan routes with playwright-cli and react-scan evidence."
|
|
config_file = "agents/profiler.toml"
|
|
|
|
[agents.react-doctor-fixer]
|
|
description = "React Doctor remediation agent for a validated diagnostic plus an explicit fix plan."
|
|
config_file = "agents/react-doctor-fixer.toml"
|
|
|
|
[agents.react-patterns-enforcer]
|
|
description = "React architecture reviewer that fixes repo-specific anti-patterns after UI logic changes."
|
|
config_file = "agents/react-patterns-enforcer.toml"
|
|
|
|
[agents.test-apk]
|
|
description = "Android emulator and APK testing agent for 5chan mobile workflows."
|
|
config_file = "agents/test-apk.toml"
|
|
|
|
[agents.translator]
|
|
description = "Single-key i18next translation agent that updates all supported languages through the project script."
|
|
config_file = "agents/translator.toml"
|