Agent skill
formax-system-prompt-workflow
Use when designing, refactoring, or debugging Formax system prompt assembly, system-reminder injection, or skills/deferred-tool prompt exposure semantics; mandatory for any change involving FORMAX_DEFERRED_TOOL_EXPOSURE and request-payload parity checks.
Install this agent skill to your Project
npx add-skill https://github.com/yusifeng/formax/tree/main/.codex/skills/formax-system-prompt-workflow
SKILL.md
formax-system-prompt-workflow
Goal
Use this skill when changing system prompt assembly, reminder injection, deferred tool exposure, or skills prompt presentation.
Read First
docs/contracts/prompt-tool-exposure-contract.mddocs/contracts/skills-contract.mddocs/contracts/semantics-contract.mdwhen request-scoped helper blocks affect replay or transcript semantics
Optional working notes:
references/parity-checklist.mdreferences/parity-evidence-template.md
These docs are canonical. If stable behavior changes, update them before or with code.
Invariants
- Keep a single prompt-profile path.
- do not reintroduce
promptProfile,lite, or similar profile branches
- do not reintroduce
- Treat
FORMAX_DEFERRED_TOOL_EXPOSUREas a linked behavior bundle.- prompt variant, tools exposure style, and skills presentation must stay aligned
- Keep helper blocks request-scoped and ephemeral.
- injected
<system-reminder>blocks and deferred helper blocks must not pollute persisted long-term history
- injected
- Only claim capabilities that Formax runtime actually implements.
- do not add CC-like capability prose before the runtime supports it
Code Map
packages/core/src/prompts/system.ts: system prompt text, variant selection, capability gatespackages/core/src/features/repl/controller/send/sendMainTurn.ts: per-turn injected block order and REPL assemblypackages/core/src/tools/runtime/deferredToolExposureResolver.ts: deferred tools exposure and helper-block contentpackages/core/src/tools/modules/skill/index.ts: skill tool description shaping and skills reminder textpackages/core/src/chat/engine.ts: request assembly and injected-block persistence boundaries- Cross-entrypoint mirrors when semantics move:
packages/core/src/app-server/turnRunner.tspackages/core/src/sdk/query/runner.ts
scripts/repl-request-preview.ts: quick dry-run payload preview without live network calls
Deferred Exposure Checklist (FORMAX_DEFERRED_TOOL_EXPOSURE=1)
- system prompt variant resolves to
deferred_aligned - request contains
<available-deferred-tools>helper content - skills availability is delivered as a skills system-reminder helper block
- tool list starts from deferred exposure resolver output (
ToolSearchfirst) - tool-call chain remains valid:
ToolSearch(select:<tool>) -> <tool>
Minimal Workflow
- Classify the change first: all-mode or deferred-only (
FORMAX_DEFERRED_TOOL_EXPOSURE=1). - Update the canonical contract and prompt text first, then change resolver / wiring code.
- Keep helper blocks request-scoped and ephemeral; do not let them leak into persisted history.
- If semantics move, check REPL, app-server, and SDK paths together before calling the change done.
- Run the minimum regression set below, then use request preview only as evidence, not as the only validation.
Minimum Regression
bun run test -- packages/core/src/prompts/system.test.ts packages/core/src/tools/runtime/deferredToolExposureResolver.test.ts packages/core/src/features/repl/controller/send/sendMainTurn.test.tsbun run test -- packages/core/src/chat/engine.test.ts packages/core/src/config/settings/resolve.test.ts packages/core/src/sdk/query.test.ts packages/core/src/sdk/query.options-alignment.test.tsbun run test -- packages/core/src/app-server/turnRunner.test.tswhen app-server request assembly changesbun run type-checkbun run request:preview -- --text "执行下 pwd" --deferredfor quick payload inspection when deferred exposure is involved
Guardrails
- Do not reintroduce prompt-profile branches (
lite,full,promptProfile, or equivalents). - Do not add new environment toggles for prompt capability sections; use code-level capability switches in
system.ts. - Do not loosen permissions or allow-list behavior just to make parity demos pass.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
formax-dev-loop-workflow
Use when working on Formax code changes and you need a disciplined dev loop: keep a single mainline task, avoid scope drift, run only targeted tests (no coverage), avoid partial staging (MM), run mandatory review before commit, include an incremental optimization check, and keep commits small and reviewable.
formax-rework-convergence-workflow
Use when code has gone through repeated rework and may contain redundant logic, style drift, or tangled structure. Trigger when user asks for "返工收敛", "cleanup-pass", or requests a focused cleanup pass that reduces churn without changing behavior.
formax-tool-ui-blocks-workflow
Implement or refactor Formax tool transcript UI using the Tool UI Blocks (C-lite) pattern (ToolUiBlocks renderer + blocks presenters) to avoid touching many tool presenter files; use when adjusting ⏺/⎿ spacing, indent rules, or migrating additional tools to blocks presenters with targeted Ink/Vitest tests and Codex review before commit.
formax-web-css-convergence-workflow
Use when changing web CSS/UI styling so requirements, state ownership, and acceptance checks are locked before edits to prevent rework churn.
formax-config-settings-workflow
Use when implementing or extending /config (storage, prompt injection, request params, UI-only toggles) with tests and strict UI parity.
formax-semantics-parity-workflow
Use when implementing or modifying behavior that must stay consistent across TUI and Web (mode/input/tool/replay/order). Require canonical semantics first, then TUI/Web adapters, then renderer-specific UI.
Didn't find tool you were looking for?