agent-control-plane 0.1.0 → 0.1.1
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# agent-control-plane
|
|
2
2
|
|
|
3
3
|
<p>
|
|
4
|
-
<a href="https://github.com/
|
|
4
|
+
<a href="https://github.com/ducminhnguyen0319/agent-control-plane/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/ducminhnguyen0319/agent-control-plane/actions/workflows/ci.yml/badge.svg?branch=main"></a>
|
|
5
5
|
<a href="https://www.npmjs.com/package/agent-control-plane"><img alt="npm version" src="https://img.shields.io/npm/v/agent-control-plane?style=flat-square"></a>
|
|
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>
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-control-plane",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Help a repo keep GitHub-driven coding agents running reliably without constant human babysitting",
|
|
5
|
-
"homepage": "https://github.com/
|
|
5
|
+
"homepage": "https://github.com/ducminhnguyen0319/agent-control-plane",
|
|
6
6
|
"bugs": {
|
|
7
|
-
"url": "https://github.com/
|
|
7
|
+
"url": "https://github.com/ducminhnguyen0319/agent-control-plane/issues"
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/
|
|
11
|
+
"url": "git+https://github.com/ducminhnguyen0319/agent-control-plane.git"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"funding": [
|
|
@@ -73,7 +73,7 @@ pr_review_template="${SKILL_ROOT}/tools/templates/pr-review-template.md"
|
|
|
73
73
|
pr_fix_template="${SKILL_ROOT}/tools/templates/pr-fix-template.md"
|
|
74
74
|
pr_merge_repair_template="${SKILL_ROOT}/tools/templates/pr-merge-repair-template.md"
|
|
75
75
|
legacy_profile_repo_name="$(printf 'f-%s' 'losning')"
|
|
76
|
-
legacy_profile_repo_slug="$(printf '%s/%s' '
|
|
76
|
+
legacy_profile_repo_slug="$(printf '%s/%s' 'example-owner' "${legacy_profile_repo_name}")"
|
|
77
77
|
legacy_profile_package_scope="@${legacy_profile_repo_name}"
|
|
78
78
|
commands_map="${SKILL_ROOT}/references/commands.md"
|
|
79
79
|
skill_doc="${SKILL_ROOT}/SKILL.md"
|
|
@@ -4,6 +4,7 @@ set -euo pipefail
|
|
|
4
4
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
5
5
|
FLOW_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)"
|
|
6
6
|
CLI_SCRIPT="${FLOW_ROOT}/npm/bin/agent-control-plane.js"
|
|
7
|
+
PACKAGE_VERSION="$(node -p "require('${FLOW_ROOT}/package.json').version")"
|
|
7
8
|
|
|
8
9
|
tmpdir="$(mktemp -d)"
|
|
9
10
|
trap 'rm -rf "${tmpdir}"' EXIT
|
|
@@ -74,7 +75,7 @@ version_output="$(
|
|
|
74
75
|
node "${CLI_SCRIPT}" version
|
|
75
76
|
)"
|
|
76
77
|
|
|
77
|
-
grep -q
|
|
78
|
+
grep -q "^${PACKAGE_VERSION}$" <<<"${version_output}"
|
|
78
79
|
|
|
79
80
|
HOME="${home_dir}" \
|
|
80
81
|
AGENT_PLATFORM_HOME="${platform_home}" \
|
|
@@ -11,13 +11,13 @@ const pkg = JSON.parse(fs.readFileSync(process.argv[1], "utf8"));
|
|
|
11
11
|
if (!pkg.description || !pkg.description.includes("running reliably without constant human babysitting")) {
|
|
12
12
|
process.exit(1);
|
|
13
13
|
}
|
|
14
|
-
if (pkg.homepage !== "https://github.com/
|
|
14
|
+
if (pkg.homepage !== "https://github.com/ducminhnguyen0319/agent-control-plane") {
|
|
15
15
|
process.exit(10);
|
|
16
16
|
}
|
|
17
|
-
if (!pkg.bugs || pkg.bugs.url !== "https://github.com/
|
|
17
|
+
if (!pkg.bugs || pkg.bugs.url !== "https://github.com/ducminhnguyen0319/agent-control-plane/issues") {
|
|
18
18
|
process.exit(11);
|
|
19
19
|
}
|
|
20
|
-
if (!pkg.repository || pkg.repository.type !== "git" || pkg.repository.url !== "git+https://github.com/
|
|
20
|
+
if (!pkg.repository || pkg.repository.type !== "git" || pkg.repository.url !== "git+https://github.com/ducminhnguyen0319/agent-control-plane.git") {
|
|
21
21
|
process.exit(12);
|
|
22
22
|
}
|
|
23
23
|
if (pkg.license !== "MIT") {
|
|
@@ -25,6 +25,7 @@ test -f "$ROOT_DIR/assets/architecture/state-dashboard-infographic.png"
|
|
|
25
25
|
grep -q 'Use GitHub private vulnerability reporting or a GitHub security advisory' "$ROOT_DIR/SECURITY.md"
|
|
26
26
|
grep -q 'For undisclosed security issues, use \[SECURITY.md\](\./SECURITY.md)' "$ROOT_DIR/CODE_OF_CONDUCT.md"
|
|
27
27
|
grep -q '^## \[Unreleased\]$' "$ROOT_DIR/CHANGELOG.md"
|
|
28
|
+
grep -q '^## \[0.1.1\] - 2026-03-30$' "$ROOT_DIR/CHANGELOG.md"
|
|
28
29
|
grep -q '^## \[0.1.0\] - 2026-03-27$' "$ROOT_DIR/CHANGELOG.md"
|
|
29
30
|
grep -q '^# Roadmap$' "$ROOT_DIR/ROADMAP.md"
|
|
30
31
|
grep -q '^## Platform Support$' "$ROOT_DIR/ROADMAP.md"
|
|
@@ -91,11 +92,11 @@ grep -q '^| `ollama` | local model runtime | Candidate local-model substrate beh
|
|
|
91
92
|
grep -q '^| `nanoclaw` | adjacent agent shell | Ecosystem reference for containerized and WSL2-friendly workflows | exploratory interoperability target |$' "$ROOT_DIR/README.md"
|
|
92
93
|
grep -q '^| `picoclaw` | adjacent agent shell | Ecosystem reference for lightweight Linux and edge-style agent runtimes | exploratory interoperability target |$' "$ROOT_DIR/README.md"
|
|
93
94
|
grep -q 'If you are trying ACP on a real repo right now, start with `codex`, `claude`,' "$ROOT_DIR/README.md"
|
|
94
|
-
grep -q 'github.com/
|
|
95
|
+
grep -q 'github.com/ducminhnguyen0319/agent-control-plane/actions/workflows/ci.yml/badge.svg?branch=main' "$ROOT_DIR/README.md"
|
|
95
96
|
grep -q 'img.shields.io/npm/v/agent-control-plane' "$ROOT_DIR/README.md"
|
|
96
97
|
grep -q 'img.shields.io/node/v/agent-control-plane' "$ROOT_DIR/README.md"
|
|
97
98
|
grep -q 'img.shields.io/npm/l/agent-control-plane' "$ROOT_DIR/README.md"
|
|
98
|
-
grep -q 'https://github.com/
|
|
99
|
+
grep -q 'https://github.com/ducminhnguyen0319/agent-control-plane/actions/workflows/ci.yml' "$ROOT_DIR/README.md"
|
|
99
100
|
grep -q 'https://www.npmjs.com/package/agent-control-plane' "$ROOT_DIR/README.md"
|
|
100
101
|
grep -q '\./assets/readme/dashboard-demo.png' "$ROOT_DIR/README.md"
|
|
101
102
|
grep -q '\./assets/readme/dashboard-demo.gif' "$ROOT_DIR/README.md"
|