Gofer Check Workspace
Before spawning agents, calling tools, or loading large files:
# Gofer Workspace Check
## Token And Cost Policy
<!-- gofer:token-cost-policy:start -->
Before spawning agents, calling tools, or loading large files:
1. Treat `.specify/memory/gofer-model-policy.yaml` as the repo-owned source of truth for simple, medium, hard, and arbiter model routing. If it is missing, run `/gofer:bootstrap-workspace` before continuing.
2. Use the cheapest capable model first.
- Claude: Haiku for scouting/extraction; Sonnet for normal implementation, synthesis, validation, and security; Opus for high-risk arbitration or release-critical failures.
- Codex/OpenAI: GPT mini for simple coding; GPT nano only for locate/classify/summarize/mechanical work; GPT-5.3-Codex or flagship GPT for tool-heavy coding, architecture, and release-critical validation.
- Gemini: Flash-Lite for cheap large-context scan/summarize; Flash for default research synthesis; Pro for large-context architecture or high-risk arbitration.
- Copilot: prefer Auto for simple and default work; ask the user before choosing a paid/high-tier picker model for hard security, architecture, or release gates.
3. Keep raw tool output out of the main conversation context. Save stable findings to `.specify/specs/{feature}/context-bundle.md`, then work from summaries.
4. Use provider prompt/context caching only for stable, non-secret prefixes: Gofer scaffold, AGENTS/CLAUDE/Copilot instructions, constitution, repo map, stage contracts, and validation rubric.
5. Before continuing after large research, planning, implementation, or validation bursts, checkpoint the durable artifacts and compact/clear/resume context when the host supports it.
6. Escalate model tier only when a cheaper pass is low-confidence, contradictory, security-sensitive, or blocking release quality.
<!-- gofer:token-cost-policy:end -->
## Step 1: Resolve The Workspace Root
Use the current working directory unless you are already inside `.specify/` or a
subdirectory. If needed, walk upward to the nearest directory containing one of:
- `.git`
- `package.json`
- `pyproject.toml`
- `go.mod`
- `Cargo.toml`
- `.specify`
## Step 2: Check The Core Gofer Sentinels
Inspect these paths relative to the workspace root:
- `.specify/.gofer-version`
- `.specify/commands/0_business_scenario.md`
- `.specify/templates/spec-template.md`
- `.specify/scripts/bash/create-new-feature.sh`
- `.specify/scripts/node/parse-stage-command.mjs`
- `.specify/scripts/hooks/post-tool-use.mjs`
- `.specify/scripts/powershell/install-optional-tools.ps1`
- `.specify/templates/gofer-model-policy.yaml`
- `.specify/memory/gofer-model-policy.yaml`
- `.specify/specs/`
- `.specify/memory/`
- `.specify/memory/gofer-model-policy.yaml` (create with `/gofer:bootstrap-workspace` if missing)
## Step 3: Check Host-Specific Files
Check the current host's required repo-owned files:
- **Claude**: `AGENTS.md`, `CLAUDE.md`, `.claude/settings.json`
- **Codex**: `AGENTS.md`
- **Copilot**: `.github/copilot-instructions.md`
- **Gemini**: no additional required repo-owned files beyond the core scaffold
## Step 4: Prefer Scripted Evidence When Available
If the repo already has the Gofer workspace scripts, run the checker for the
current host and report the JSON result. Use the host value that matches the
client you are currently in: `claude`, `codex`, `copilot`, or `gemini`.
```bash
node .specify/scripts/node/gofer-workspace-check.mjs --host "$GOFER_HOST" --json
If that script is missing, perform the equivalent manual path checks yourself and summarize the result in the same categories:
healthymissingstale
Treat the workspace as stale when .specify/.gofer-version is present but
does not match the installed Gofer/plugin version you are currently running.
Step 5: Write The Workspace Check Report
Write the artifact only to .specify/logs/workspace-check-report.md.
If the target file already exists, replace it and prepend a regeneration note
such as <!-- regenerated at [ISO timestamp] -->.
Include the minimum provenance schema:
GeneratedAtSourceCommandIdSourceInputsOverwriteNoticeWhenApplicable
The generated workspace check report must contain these sections:
## Provenance## Workspace Root## Core Scaffold## Host Requirements## Status## Recommendation
Step 6: Report And Ask Once If Repair Is Needed
If the workspace is healthy, say so briefly and continue.
If the workspace is missing or stale, ask exactly:
"This repo is missing or stale for Gofer. Initialize/update it now?"
If the user says yes, run /gofer:bootstrap-workspace next.
If the user says no, stop. Explain that Gofer stage/helper commands depend on the repo-owned scaffold and should not continue until the repo is initialized or updated. ```
Maintain Gofer Check Workspace?
Let people know it's listed here — add the badge (live metrics, light/dark aware) or a plain link to your README or docs.
[Gofer Check Workspace on getagentictools](https://getagentictools.com/loops/eai-tools-gofer-workspace-check?ref=badge)