docs: Update AGENTS.md workflow tools and synchronize expanded mana types #248
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Overview
The
AGENTS.mdfile currently contains outdated workflow instructions and stale architectural data. This issue tracks the necessary updates to ensure that future autonomous AI agent sessions do not fail due to invalid tool calls or stale game definitions.Required Changes
1. Fix Outdated Tooling in "Session Start"
Locate the Session Start protocol section in
AGENTS.md.Remove the reference to
gitea_get_project_boards, as this tool has been deprecated and completely removed from the agent's environment.Replace step 3 and step 4 with instructions to utilize
gitea_start_sessionto fetch active registry issues and tasks.2. Audit and Update "Mana Types"
The Mana Types section currently only maps out specific Base, Utility, Composite, and Exotic types.
Review the source code files defining mana structures to identify all newly added mana types that are missing from the documentation.
Update the list to explicitly reflect all current valid options in the codebase.
Verify that the Banned mana types list (
life,blood,wood,mental,force) is still accurate or if any need to be unbanned/adjusted.3. General Codebase Alignment Check
Zustand Stores: Verify that the 7 active Zustand stores listed (
useGameStore,useManaStore, etc.) still accurately map to the core state architecture.File Limit: Ensure the reminder about the 400-line pre-commit hook file limit remains prominently highlighted.
Acceptance Criteria
AGENTS.mdno longer referencesgitea_get_project_boards.gitea_start_sessionis integrated into the step-by-step onboarding protocol.Every new mana type currently implemented in the codebase is documented in the Mana Types section.
The modified
AGENTS.mdfile passes the 400-line pre-commit hook constraints.also update README.md and docs/GAME_BRIEFING.md assume those files are completely outdated and incorrect.
Starting work on issue #248: Updating AGENTS.md workflow tools and synchronizing expanded mana types. Will also update README.md and docs/GAME_BRIEFING.md as requested.
✅ Completed all documentation updates: