@a5c-ai/babysitter-cursor 5.0.1-staging.ae07dd8d → 5.0.1-staging.aedcb38c
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/install-shared.js +9 -9
- package/bin/uninstall.js +0 -1
- package/package.json +9 -7
- package/plugin.json +1 -1
- package/versions.json +2 -1
package/bin/install-shared.js
CHANGED
|
@@ -13,7 +13,7 @@ function getUserHome() {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
function getHarnessHome() {
|
|
16
|
-
return path.join(os.homedir(),
|
|
16
|
+
return path.join(os.homedir(), ".cursor");
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
function getHomePluginRoot(scope) {
|
|
@@ -489,22 +489,22 @@ module.exports = {
|
|
|
489
489
|
resolveCliCommand,
|
|
490
490
|
runCli,
|
|
491
491
|
ensureGlobalProcessLibrary,
|
|
492
|
-
HOOK_SCRIPT_NAMES,
|
|
493
|
-
DEFAULT_MARKETPLACE,
|
|
494
|
-
MANAGED_HOOKS_CONFIG_PATHS,
|
|
495
492
|
PLUGIN_BUNDLE_ENTRIES,
|
|
496
|
-
getCursorHome,
|
|
497
|
-
getHomePluginRoot,
|
|
498
|
-
getHomeMarketplacePath,
|
|
499
493
|
copyRecursive,
|
|
500
494
|
copyPluginBundle,
|
|
495
|
+
DEFAULT_MARKETPLACE,
|
|
501
496
|
normalizeMarketplaceSourcePath,
|
|
502
497
|
normalizeMarketplaceName,
|
|
503
498
|
ensureMarketplaceEntry,
|
|
504
499
|
removeMarketplaceEntry,
|
|
505
|
-
getManagedHooksConfigPath,
|
|
506
500
|
mergeManagedHooksConfig,
|
|
501
|
+
warnWindowsHooks,
|
|
502
|
+
HOOK_SCRIPT_NAMES,
|
|
503
|
+
MANAGED_HOOKS_CONFIG_PATHS,
|
|
504
|
+
getCursorHome,
|
|
505
|
+
getHomePluginRoot,
|
|
506
|
+
getHomeMarketplacePath,
|
|
507
|
+
getManagedHooksConfigPath,
|
|
507
508
|
removeManagedHooks,
|
|
508
509
|
installCursorSurface,
|
|
509
|
-
warnWindowsHooks,
|
|
510
510
|
};
|
package/bin/uninstall.js
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/babysitter-cursor",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.aedcb38c",
|
|
4
4
|
"description": "Orchestrate complex, multi-step workflows with event-sourced state management, hook-based extensibility, and human-in-the-loop approval",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"deploy": "npm publish --access public",
|
|
7
7
|
"deploy:staging": "npm publish --access public --tag staging",
|
|
8
8
|
"postinstall": "node bin/install.js",
|
|
9
9
|
"preuninstall": "node bin/uninstall.js",
|
|
10
|
-
"team:install": "node scripts/team-install.js"
|
|
11
|
-
"test": "node scripts/sync-command-surfaces.js --check",
|
|
12
|
-
"sync:commands": "node scripts/sync-command-surfaces.js"
|
|
10
|
+
"team:install": "node scripts/team-install.js"
|
|
13
11
|
},
|
|
14
12
|
"bin": {
|
|
15
13
|
"babysitter-cursor": "bin/cli.js"
|
|
@@ -37,11 +35,15 @@
|
|
|
37
35
|
"access": "public"
|
|
38
36
|
},
|
|
39
37
|
"dependencies": {
|
|
40
|
-
"@a5c-ai/babysitter-sdk": "5.0.1-staging.
|
|
38
|
+
"@a5c-ai/babysitter-sdk": "5.0.1-staging.aedcb38c"
|
|
41
39
|
},
|
|
42
40
|
"repository": {
|
|
43
41
|
"type": "git",
|
|
44
|
-
"url": "https://github.com/a5c-ai/babysitter"
|
|
42
|
+
"url": "git+https://github.com/a5c-ai/babysitter.git",
|
|
43
|
+
"directory": "plugins/babysitter-cursor"
|
|
45
44
|
},
|
|
46
|
-
"homepage": "https://github.com/a5c-ai/babysitter/tree/main/plugins/babysitter-cursor#readme"
|
|
45
|
+
"homepage": "https://github.com/a5c-ai/babysitter/tree/main/plugins/babysitter-cursor#readme",
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/a5c-ai/babysitter/issues"
|
|
48
|
+
}
|
|
47
49
|
}
|
package/plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babysitter",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.aedcb38c",
|
|
4
4
|
"description": "Orchestrate complex, multi-step workflows with event-sourced state management, hook-based extensibility, and human-in-the-loop approval",
|
|
5
5
|
"author": "a5c.ai",
|
|
6
6
|
"license": "MIT",
|
package/versions.json
CHANGED