Workflow: Verify Toolkit Setup
Confirms the toolkit is intact after cloning or pulling. Ensures all entry points, core directories, and expected file counts are present and ready for use.
Objective
Confirm that the toolkit has been properly initialized and all critical files and directories exist.
Inputs
- The current working directory (repo root).
Outputs
- A pass/fail report with ✓/✗ per check.
- A final health summary: either "Toolkit is healthy — ready to use" or a list of missing/short items with recovery suggestions.
Step-by-Step Process
Check entry point files exist — verify these files are present at the repo root:
CLAUDE.mdGEMINI.md.cursorrules.windsurfrulesAGENTS.md
Check core directories exist — verify these directories are present:
agents/skills/workflows/checklists/standards/templates/architecture/
Check expected file counts — ensure minimum thresholds are met:
agents/*.md≥ 14skills/**/*.md≥ 31workflows/*.md≥ 11checklists/*.md≥ 8standards/*.md≥ 7
Report each check — display ✓ for pass, ✗ for fail.
Print health summary — on all pass, print:
Toolkit is healthy — ready to use
On any fail, list missing/short items and suggest:
Run
git statusto check for missing filesRe-clone if the issue persists:
bashgit clone https://github.com/sokpichdev/mobile-engineering-agents.git
Validation Steps
- Entry point files are readable at the repo root.
- All core directories exist and are accessible.
- File counts meet the specified minimums.
Failure Scenarios
- Missing entry point files → Check recent git pull or clone; some files may not have been fetched.
- Missing directories → Incomplete clone or repository structure issue; re-clone or restore from git.
- File count shortfall → Files may have been deleted or moved; restore from
git checkoutor re-clone.
AI Agent Instructions
- Verify by reading directory listings and file counts — no shell commands required.
- Be thorough: check all entry points and all core directories before declaring pass.
- If any single check fails, the overall health is fail; list all failures and suggest recovery steps.
- Do not proceed with task guidance if the toolkit is not healthy.
Acceptance Criteria
- [ ] All five entry point files confirmed present.
- [ ] All seven core directories confirmed present.
- [ ] All file count thresholds met.
- [ ] Health summary printed (pass or fail with guidance).