aidevops 3.32.227 → 3.32.229
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 +18 -1
- package/VERSION +1 -1
- package/aidevops.sh +9 -1
- package/bun.lock +1 -0
- package/package.json +4 -3
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ The result: an AI operations platform that manages projects across every busines
|
|
|
60
60
|
[](https://github.com/marcusquinn)
|
|
61
61
|
|
|
62
62
|
<!-- Release & Version Info -->
|
|
63
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
64
64
|
[](https://www.npmjs.com/package/aidevops)
|
|
65
65
|
[](https://github.com/marcusquinn/homebrew-tap)
|
|
66
66
|
[](https://github.com/marcusquinn/aidevops)
|
|
@@ -105,7 +105,9 @@ the required notices and preferred credit text.
|
|
|
105
105
|
- `aidevops runtime-bundle list` - List retained validated runtime bundles; use `rollback --bundle-id <id> --reason <text>` for an explicit audited rollback
|
|
106
106
|
- `aidevops gpt56-context [enable|disable|status]` - Keep GPT-5.6 at a 300K advertised context window in OpenCode (enabled by default), so 80% auto-compaction runs near 240K before long-context pricing; disable to use native provider limits
|
|
107
107
|
- `aidevops buzz [status|apply|rollback]` - Inspect or manage Buzz Desktop OpenCode ACP compatibility
|
|
108
|
+
- `~/.aidevops/agents/scripts/team-interface-helper.sh [providers|detect|status|doctor|plan]` - Inspect registered collaboration providers, persist read-only observations, or emit deterministic dry-run plans; no provider-write command is exposed
|
|
108
109
|
- `aidevops secret` - Manage secrets (gopass encrypted, AI-safe)
|
|
110
|
+
- `aidevops source-access` - Manage exact-path, session-bound source-read approvals signed via sudo
|
|
109
111
|
- `aidevops security` - Full security assessment (posture, secrets, supply chain)
|
|
110
112
|
- `aidevops lint audit` - Audit native lint/format/typecheck commands and repo-verify hooks
|
|
111
113
|
- `aidevops lint configure --dry-run` - Preview safe evidence-based lint provisioning
|
|
@@ -210,10 +212,25 @@ aidevops security scan-secrets # Plaintext credential locations only
|
|
|
210
212
|
aidevops security scan-deps # Unpinned dependency check
|
|
211
213
|
aidevops security check # Per-repo security posture assessment
|
|
212
214
|
aidevops security dismiss <id> # Dismiss a security advisory after taking action
|
|
215
|
+
aidevops source-access status # List temporary source-read approvals
|
|
216
|
+
sudo -k /usr/bin/python3 /etc/aidevops/source-access/source-access-helper.py setup
|
|
217
|
+
sudo -k /usr/bin/python3 /etc/aidevops/source-access/source-access-helper.py revoke <approval-id>
|
|
213
218
|
```
|
|
214
219
|
|
|
215
220
|
Running `aidevops security` with no arguments is the single command that covers everything — user security posture, plaintext secret detection, supply chain IoC scanning, and active advisories.
|
|
216
221
|
|
|
222
|
+
When a read guard identifies only a low-confidence source-code basename match, it emits a scoped request. A maintainer can run the displayed root-broker approval command. Approvals are bound to the exact runtime session, user, Git-tracked regular source path, approved content digest, and guard reason; they expire within 12 hours and never override private-key, environment-file, credential-store, hard-link, symlink, changed-content, or untracked-file denials. The plugin redirects the approved read to a root-controlled immutable snapshot of those bytes so the live path cannot be rebound after verification; revocation removes both receipt and snapshot.
|
|
223
|
+
|
|
224
|
+
Privileged operations never execute the user-managed aidevops deployment as root. Resolve the immutable commit from the published, signed aidevops release metadata, substitute it for `<verified-release-commit>`, and let root fetch the reviewed broker files directly over TLS. Never install the broker from the user-writable deployed tree.
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
sudo -k /usr/bin/install -d -o 0 -g 0 -m 0755 /etc/aidevops/source-access
|
|
228
|
+
sudo -k -H /usr/bin/curl --disable --fail --location --proto '=https' --proto-redir '=https' --tlsv1.2 "https://raw.githubusercontent.com/marcusquinn/aidevops/<verified-release-commit>/.agents/scripts/source_access_core.py" --output /etc/aidevops/source-access/source_access_core.py
|
|
229
|
+
sudo -k -H /usr/bin/curl --disable --fail --location --proto '=https' --proto-redir '=https' --tlsv1.2 "https://raw.githubusercontent.com/marcusquinn/aidevops/<verified-release-commit>/.agents/scripts/source-access-helper.py" --output /etc/aidevops/source-access/source-access-helper.py
|
|
230
|
+
sudo /bin/chmod 0644 /etc/aidevops/source-access/source_access_core.py /etc/aidevops/source-access/source-access-helper.py
|
|
231
|
+
sudo -k /usr/bin/python3 /etc/aidevops/source-access/source-access-helper.py setup
|
|
232
|
+
```
|
|
233
|
+
|
|
217
234
|
**Security advisories** are delivered via `aidevops update` and shown in the session greeting until dismissed. The scanner never exposes secret values — only file locations and key names. All remediation commands should be run in a separate terminal, not inside AI chat sessions.
|
|
218
235
|
|
|
219
236
|
**Supply chain hardening:** All Python dependencies are pinned to exact versions (`==`) to prevent malicious package upgrades. The `.pth` file auditor detects known supply chain attack indicators (e.g., the LiteLLM March 2026 PyPI compromise).
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.32.
|
|
1
|
+
3.32.229
|
package/aidevops.sh
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# AI DevOps Framework CLI
|
|
6
6
|
# Usage: aidevops <command> [options]
|
|
7
7
|
#
|
|
8
|
-
# Version: 3.32.
|
|
8
|
+
# Version: 3.32.229
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1036,6 +1036,7 @@ _help_commands() {
|
|
|
1036
1036
|
echo " ip-check <cmd> IP reputation checks (check/batch/report/providers)"
|
|
1037
1037
|
echo " review-gate <cmd> Configure review_gate merge policies (rate-limit/completion)"
|
|
1038
1038
|
echo " github-app-auth GitHub App auth setup/status and API route decisions"
|
|
1039
|
+
echo " source-access <cmd> Session-bound, sudo-signed source-read approvals"
|
|
1039
1040
|
echo " secret <cmd> Manage secrets (set/list/run/init/import/status)"
|
|
1040
1041
|
echo " vault <cmd> Local encrypted Vault broker (init/unlock/lock/status/read/update)"
|
|
1041
1042
|
echo " config <cmd> Feature toggles (list/get/set/reset/path/help)"
|
|
@@ -1065,6 +1066,12 @@ _help_detailed_sections() {
|
|
|
1065
1066
|
echo " aidevops security check # Per-repo security posture assessment"
|
|
1066
1067
|
echo " aidevops security dismiss <id> # Dismiss a security advisory"
|
|
1067
1068
|
echo ""
|
|
1069
|
+
echo "Temporary source access:"
|
|
1070
|
+
echo " sudo -k /usr/bin/python3 /etc/aidevops/source-access/source-access-helper.py setup"
|
|
1071
|
+
echo " sudo -k /usr/bin/python3 /etc/aidevops/source-access/source-access-helper.py approve <id> --ttl 12h"
|
|
1072
|
+
echo " aidevops source-access status # List active/expired approvals"
|
|
1073
|
+
echo " sudo -k /usr/bin/python3 /etc/aidevops/source-access/source-access-helper.py revoke <approval-id>"
|
|
1074
|
+
echo ""
|
|
1068
1075
|
echo "IP Reputation:"
|
|
1069
1076
|
echo " aidevops ip-check check <ip> # Check IP reputation across providers"
|
|
1070
1077
|
echo " aidevops ip-check batch <f> # Batch check IPs from file"
|
|
@@ -1843,6 +1850,7 @@ main() {
|
|
|
1843
1850
|
opencode-desktop | oc-desktop) _dispatch_helper "opencode-launcher-helper.sh" "opencode-launcher-helper.sh" desktop "$@" ;;
|
|
1844
1851
|
opencode-sandbox | oc-sandbox) _dispatch_helper "opencode-sandbox-helper.sh" "opencode-sandbox-helper.sh" "$@" ;;
|
|
1845
1852
|
review-gate | review_gate) _dispatch_helper "review-gate-config-helper.sh" "review-gate-config-helper.sh" "$@" ;;
|
|
1853
|
+
source-access | source_access) _dispatch_helper "source-access-helper.sh" "source-access-helper.sh" "$@" ;;
|
|
1846
1854
|
secret | secrets) _dispatch_helper "secret-helper.sh" "secret-helper.sh" "$@" ;;
|
|
1847
1855
|
vault) _dispatch_helper "vault-helper.sh" "vault-helper.sh" "$@" ;;
|
|
1848
1856
|
approve) _dispatch_helper "approval-helper.sh" "approval-helper.sh" "$@" ;;
|
package/bun.lock
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aidevops",
|
|
3
|
-
"version": "3.32.
|
|
3
|
+
"version": "3.32.229",
|
|
4
4
|
"description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"workspaces": [
|
|
@@ -65,10 +65,11 @@
|
|
|
65
65
|
"vite": "^7.0.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@types/react": "^19.0.0",
|
|
69
|
-
"@types/react-dom": "^19.0.0",
|
|
70
68
|
"@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
|
|
71
69
|
"@types/bun": "latest",
|
|
70
|
+
"@types/react": "^19.0.0",
|
|
71
|
+
"@types/react-dom": "^19.0.0",
|
|
72
|
+
"ajv": "^8.18.0",
|
|
72
73
|
"react": "^19.0.0",
|
|
73
74
|
"react-dom": "^19.0.0",
|
|
74
75
|
"secretlint": "^11.2.5",
|
package/setup.sh
CHANGED
|
@@ -17,7 +17,7 @@ fi
|
|
|
17
17
|
# AI Assistant Server Access Framework Setup Script
|
|
18
18
|
# Helps developers set up the framework for their infrastructure
|
|
19
19
|
#
|
|
20
|
-
# Version: 3.32.
|
|
20
|
+
# Version: 3.32.229
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|