murmur8 4.3.2 → 4.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/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "murmur8",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "description": "Multi-agent workflow framework for automated feature development",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/update.js CHANGED
@@ -42,6 +42,13 @@ async function update() {
42
42
  const skillSrc = path.join(PACKAGE_ROOT, 'SKILL.md');
43
43
  const skillDest = path.join(TARGET_DIR, 'SKILL.md');
44
44
 
45
+ // Check if running in the package source directory (dev mode)
46
+ if (PACKAGE_ROOT === TARGET_DIR) {
47
+ console.log('Cannot run update in the murmur8 source directory.');
48
+ console.log('This command is for updating projects that use murmur8.');
49
+ process.exit(1);
50
+ }
51
+
45
52
  // Check if .blueprint exists
46
53
  if (!fs.existsSync(blueprintDest)) {
47
54
  console.log('.blueprint directory not found. Run "agent-workflow init" first.');