Loading...
Loading...
This skill should be used when a team wants to create or refine the technical guidelines document — for example "create the tech steering doc", "document our tech stack", "write the technical guidelines", "document our architecture decisions", "set up the tech steering", or "update the tech doc". Generates docs/steering/TECH.md as a living document capturing the stack, architecture patterns, constraints, commands, and ADRs. Generated once and refined — not regenerated from scratch.
npx skill4agent add xiduzo/wtf wtf.steer-techdocs/steering/TECH.mdreferences/tech-template.mddocs/steering/TECH.mdAskUserQuestionquestionheaderoptions[{label: "Refine it", description: "Review and improve the existing document"}, {label: "Exit", description: "Leave it as-is"}]package.jsonpyproject.tomlgo.modCargo.toml*.csprojpackage.jsonpackage.jsonMakefilejustfiledocs/adr/docs/decisions/AskUserQuestionreferences/tech-template.md[PLACEHOLDER]AskUserQuestionquestion: "Does this accurately reflect the technical setup?"header: "Review"options: [{label: "Looks good — save it", description: "Write to docs/steering/TECH.md"}, {label: "I have changes", description: "I want to adjust something first"}]mkdir -p docs/steeringdocs/steering/TECH.mdgit add docs/steering/TECH.md
git commit -m "docs: add technical guidelines steering document"AskUserQuestionquestionheaderoptions[{label: "Yes — push to wiki", description: "Publish TECH.md as a wiki page"}, {label: "Not now", description: "Skip wiki sync"}]REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner)
git clone https://github.com/$REPO.wiki.git /tmp/wiki-sync
cp docs/steering/TECH.md /tmp/wiki-sync/WTF-Tech.md
cd /tmp/wiki-sync && git add WTF-Tech.md && git commit -m "Sync: technical guidelines" && git push
rm -rf /tmp/wiki-syncAskUserQuestionquestionheaderoptions[{label: "Create DESIGN.md", description: "Run to document the design guidelines"}, {label: "Create QA.md", description: "Runto document the QA standards"}, {label: "Create VISION.md", description: "Run to document the product vision"}, {label: "Stop here", description: "Exit — no further action"}]