.claude/skills.nouse/repo-architect/SKILL.md
Bootstraps and validates agentic project structures for GitHub Copilot (VS Code) and OpenCode CLI workflows. Run after `opencode /init` or VS Code Copilot initialization to scaffold proper folder hierarchies, instructions, agents, skills, and prompts.
npx skillsauth add taewook486/real-estate-mcp repo-architectInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Scaffold and validate agentic project structures for VS Code GitHub Copilot and/or OpenCode CLI.
PROJECT ROOT
├── [LAYER 1: FOUNDATION]
│ ├── .github/copilot-instructions.md ← VS Code reads this
│ └── AGENTS.md ← OpenCode CLI reads this
├── [LAYER 2: SPECIALISTS]
│ ├── .github/agents/*.agent.md
│ └── .opencode/agents/*.agent.md
└── [LAYER 3: CAPABILITIES]
├── .github/skills/*.md
├── .github/prompts/*.prompt.md
└── .github/instructions/*.instructions.md
/bootstrap — Full Scaffolding.github/, .opencode/, project language/framework.github/copilot-instructions.md
.github/agents/ .github/instructions/ .github/prompts/ .github/skills/
.opencode/opencode.json .opencode/agents/ # if OpenCode detected
AGENTS.md ← symlink or custom version of copilot-instructions.md
/validate after scaffolding/validate — Structure Check✅ Structure Valid | ⚠️ Warnings | ❌ Issues
Foundation: ✅ copilot-instructions.md ✅ AGENTS.md
Agents: ✅ reviewer.agent.md ⚠️ architect.agent.md — missing 'model'
Skills: ❌ test-gen.prompt.md — missing 'description'
/migrate — Migrate Existing ConfigSupported sources: .cursor/, .aider/, standalone AGENTS.md, .vscode/ settings → .github/ + .opencode/
/sync — Sync VS Code ↔ OpenCodeUpdate symlinks, propagate shared skill changes, validate cross-environment consistency.
/suggest — Community ResourcesRequires awesome-copilot MCP server. Check for mcp_awesome-copil_* tools first.
/validate after /bootstrap or /migrateFor file templates and frontmatter requirements, see references/templates.md.
After each command provide:
testing
--- name: worklog description: Update worklog files by moving tasks between todo/doing/done states. Use when recording task progress, starting new work, or marking tasks complete. Requires explicit arguments: worklog [done|doing|todo] [description]. --- # Worklog Update task state in worklog files. Requires explicit arguments. ## Worklog Files - `localdocs/worklog.todo.md` — backlog - `localdocs/worklog.doing.md` — in progress - `localdocs/worklog.done.md` — completed (grouped by date, appen
development
Test-Driven Development workflow. Use for ALL code changes - features, bug fixes, refactoring. TDD is non-negotiable.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Refactoring assessment and patterns. Use after tests pass (GREEN phase) to assess improvement opportunities.