| name | nodus-dev-init |
| description | Initialize NODUS development environment with junctions and symlinks. |
NODUS Dev Init Skill
This skill provides the logic and commands to set up the NODUS development environment. It ensures that junctions, hardlinks, and symlinks correctly point to canonical sources in packages/.
Procedures
1. Identify Environment
Identify the operating system (Windows vs. Unix/macOS).
2. Execute Initialization Script
Establish all junctions and symlinks using the platform-specific script. Key tasks include:
- Linking
.claude/ commands, skills, and rules to .agents/.
- Linking root
CLAUDE.md to AGENTS.md for agent instructions.
- Linking canonical workflows and skills from
packages/ to .agents/.
- Linking core specs to
demo project.
- Maintaining the git index by removing linked paths.
On Windows (PowerShell):
pwsh -NoProfile -File .agents/skills/nodus-dev-init/scripts/setup_windows.ps1
On Unix (Bash):
bash .agents/skills/nodus-dev-init/scripts/setup_unix.sh
3. Verification
Confirm that all links are active and point to correct targets inside the project. Junctions should resolve to absolute paths at the time of creation.
Resources