agent-control-plane 0.1.4 → 0.1.6

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/README.md CHANGED
@@ -6,8 +6,8 @@
6
6
  <a href="https://www.npmjs.com/package/agent-control-plane"><img alt="node version" src="https://img.shields.io/node/v/agent-control-plane?style=flat-square"></a>
7
7
  <a href="./LICENSE"><img alt="license" src="https://img.shields.io/npm/l/agent-control-plane?style=flat-square"></a>
8
8
  <a href="https://github.com/sponsors/ducminhnguyen0319"><img alt="GitHub Sponsors" src="https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ea4aaa?style=flat-square&logo=githubsponsors&logoColor=white"></a>
9
+ <a href="https://socket.dev/npm/package/agent-control-plane"><img alt="Socket" src="https://img.shields.io/badge/Socket-79-f5a623?style=flat-square"></a>
9
10
  </p>
10
-
11
11
  `agent-control-plane` helps a repo keep coding agents running reliably without
12
12
  constant human babysitting.
13
13
 
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require("../npm/bin/agent-control-plane.js");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-control-plane",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Help a repo keep GitHub-driven coding agents running reliably without constant human babysitting",
5
5
  "homepage": "https://github.com/ducminhnguyen0319/agent-control-plane",
6
6
  "bugs": {
@@ -14,8 +14,8 @@
14
14
  "funding": [
15
15
  "https://github.com/sponsors/ducminhnguyen0319"
16
16
  ],
17
- "directories": {
18
- "bin": "npm/public-bin"
17
+ "bin": {
18
+ "agent-control-plane": "./bin/agent-control-plane"
19
19
  },
20
20
  "files": [
21
21
  "README.md",
@@ -24,7 +24,6 @@
24
24
  "bin",
25
25
  "hooks",
26
26
  "npm/bin",
27
- "npm/public-bin",
28
27
  "tools/bin",
29
28
  "tools/dashboard/app.js",
30
29
  "tools/dashboard/dashboard_snapshot.py",
@@ -40,7 +39,7 @@
40
39
  "scripts": {
41
40
  "doctor": "node ./npm/bin/agent-control-plane.js doctor",
42
41
  "smoke": "node ./npm/bin/agent-control-plane.js smoke",
43
- "test": "bash tools/tests/test-agent-control-plane-npm-cli.sh && bash tools/tests/test-vendored-codex-quota-claude-oauth-only.sh"
42
+ "test": "bash tools/tests/test-agent-control-plane-npm-cli.sh && bash tools/tests/test-profile-adopt-skip-anchor-sync-creates-agent-repo-root.sh && bash tools/tests/test-vendored-codex-quota-claude-oauth-only.sh"
44
43
  },
45
44
  "keywords": [
46
45
  "agents",
@@ -181,6 +181,12 @@ else
181
181
  rm -f "$WORKSPACE_LINK"
182
182
  fi
183
183
 
184
+ # Keep the configured anchor root materialized even when anchor sync is skipped
185
+ # so later setup/runtime steps can rely on the path existing.
186
+ if [[ "$anchor_sync_status" != "ok" && ! -e "$AGENT_REPO_ROOT" ]]; then
187
+ mkdir -p "$AGENT_REPO_ROOT"
188
+ fi
189
+
184
190
  agent_repo_status_after="$(path_status "$AGENT_REPO_ROOT")"
185
191
  workspace_file_status="$(path_status "$VSCODE_WORKSPACE_FILE")"
186
192
  adopt_status="ok"
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- require("../bin/agent-control-plane.js");