init

Bootstraps the .resonance project memory scaffold for new projects.

Updated Dec 1, 2025
One-click install
npx skills add https://github.com/manusco/wolfgang --skill init-manusco
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: init
Source: https://github.com/manusco/wolfgang/tree/main/.cursor/skills/init
Command: npx skills add https://github.com/manusco/wolfgang --skill init-manusco

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? New projects lack a persistent memory structure, forcing developers to manually set up soul, state, and documentation scaffolding before an AI assistant can retain project context across sessions. ## Core Features & Use Cases - Project Memory Bootstrap: Creates the .resonance/ directory containing soul, state, and docs scaffold in a single run. - Command Routing: Routes the /init command to the core ops procedure defined in .agents/skills/ops/core/SKILL.md and executes its Definition of Done. - Use Case: When starting a brand-new project, run /init once so the assistant gains a persistent memory layout it can read and update in every future session. ## Quick Start Ask the assistant to run the /init command to bootstrap the .resonance project memory for this new project.

Frequently Asked Questions about init

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I initialize project memory for an AI assistant?▼

Run the /init command once per new project. It routes to the core ops skill, which creates the .resonance/ directory containing the soul, state, and docs scaffold used for persistent project context.

What does the .resonance directory contain?▼

The .resonance directory holds the project memory scaffold: a soul file, state tracking, and a docs structure. It is created by the init procedure and gives the assistant persistent context about the project.

Should I run /init more than once per project?▼

No. The init procedure is designed to run once per new project. It bootstraps the memory scaffold; subsequent sessions read and update the existing .resonance files rather than reinitializing them.

Why does /init reference another SKILL.md file?▼

The init skill is only a router. The actual initialization procedure, including its Definition of Done, lives in .agents/skills/ops/core/SKILL.md, which the init command reads and executes in full.