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 +0 -0
- package/package.json +1 -1
- package/src/update.js +7 -0
package/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
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.');
|