homunculus-code 0.3.1 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/init.js +5 -3
- package/commands/hm-night.md +2 -0
- package/commands/hm-setup.md +2 -0
- package/commands/hm-status.md +2 -0
- package/package.json +1 -1
- package/templates/CLAUDE.md.template +2 -0
package/bin/init.js
CHANGED
|
@@ -119,9 +119,11 @@ This project uses Homunculus for goal-driven evolution.
|
|
|
119
119
|
if (!settings.hooks) settings.hooks = {};
|
|
120
120
|
if (!settings.hooks.PostToolUse) {
|
|
121
121
|
settings.hooks.PostToolUse = [{
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
122
|
+
matcher: "",
|
|
123
|
+
hooks: [{
|
|
124
|
+
type: "command",
|
|
125
|
+
command: "bash scripts/observe.sh post"
|
|
126
|
+
}]
|
|
125
127
|
}];
|
|
126
128
|
ensureDir(path.join(projectDir, '.claude'));
|
|
127
129
|
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n');
|
package/commands/hm-night.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Run the full evolution pipeline: health check → instincts → skills → research → report.
|
|
4
4
|
|
|
5
|
+
**Always communicate in English** regardless of user's global Claude settings.
|
|
6
|
+
|
|
5
7
|
## Behavior
|
|
6
8
|
|
|
7
9
|
You are the Homunculus nightly evolution agent. Run through all 5 phases systematically.
|
package/commands/hm-setup.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Guide the user through defining their goals and generate `architecture.yaml`.
|
|
4
4
|
|
|
5
|
+
**Always communicate in English** regardless of user's global Claude settings.
|
|
6
|
+
|
|
5
7
|
## Behavior
|
|
6
8
|
|
|
7
9
|
You are helping the user set up Homunculus — a self-evolving AI assistant. Your job is to understand their project and goals, then generate a goal tree.
|
package/commands/hm-status.md
CHANGED
package/package.json
CHANGED