aidevops 3.34.20 → 3.34.22
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 +15 -2
- package/VERSION +1 -1
- package/aidevops.sh +3 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ token efficiency, and quality control built in.**
|
|
|
25
25
|
[](https://qlty.sh/gh/marcusquinn/projects/aidevops)
|
|
26
26
|
[](https://app.codacy.com/gh/marcusquinn/aidevops/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
27
27
|
[](https://opensource.org/licenses/MIT)
|
|
28
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
29
29
|
[](https://www.npmjs.com/package/aidevops)
|
|
30
30
|
[](https://github.com/marcusquinn/homebrew-tap)
|
|
31
31
|
|
|
@@ -74,6 +74,7 @@ measured result. The canonical purpose and decision criteria are in
|
|
|
74
74
|
```bash
|
|
75
75
|
aidevops status # Installation, runtime and storage health
|
|
76
76
|
aidevops init # Add aidevops conventions to a repository
|
|
77
|
+
aidevops project-config restore owner/repo # Preview recovery of missing ignored local config
|
|
77
78
|
aidevops update # Update the framework and registered projects
|
|
78
79
|
aidevops features # Discover framework features
|
|
79
80
|
aidevops repos # Manage registered projects
|
|
@@ -82,6 +83,18 @@ aidevops security # Security posture, hygiene and supply-chain che
|
|
|
82
83
|
aidevops metrics generate # Refresh local repository metrics
|
|
83
84
|
```
|
|
84
85
|
|
|
86
|
+
If a registered repository loses its ignored `.aidevops.json`, first preview
|
|
87
|
+
`aidevops project-config restore owner/repo --backup /path/to/verified-backup.json`.
|
|
88
|
+
Without a verified backup, omit `--backup` to preview only the explicitly enabled
|
|
89
|
+
features and init scope recorded in the local registry; other settings (including
|
|
90
|
+
plugins and `counter_branch`) are **unknown**, not defaults or explicit opt-outs.
|
|
91
|
+
After reviewing the target and settings, rerun with `--apply` in an attached
|
|
92
|
+
terminal and type the exact destination path. This operation writes only a new
|
|
93
|
+
ignored local config in the registered checkout; it refuses tracked configs,
|
|
94
|
+
linked-worktree registrations, symlinks, ambiguous entries, and overwrites.
|
|
95
|
+
For tracked configs, use the existing linked-worktree migration instead. Do not
|
|
96
|
+
run the full `aidevops init` workflow as a config-only repair.
|
|
97
|
+
|
|
85
98
|
In an AI session:
|
|
86
99
|
|
|
87
100
|
```text
|
|
@@ -326,7 +339,7 @@ See [reports](.agents/reports/general.md) and the versioned
|
|
|
326
339
|
### Design, browser, mobile, and media
|
|
327
340
|
|
|
328
341
|
- **Design:** Google `DESIGN.md` conventions, brand identity, visual concepts, distinctive UI, component guidance, previews, and accessibility verification.
|
|
329
|
-
- **Browser:** Playwright-first automation, reusable browser-operation learning, authenticated-profile boundaries, crawling, screenshots, and performance diagnostics.
|
|
342
|
+
- **Browser:** Playwright-first automation with bounded Luna-xhigh browser subagents in OpenCode (Sol-medium/parent fallback), reusable browser-operation learning, authenticated-profile boundaries, crawling, screenshots, and performance diagnostics.
|
|
330
343
|
- **Mobile:** Expo, Swift/Xcode, App Store Connect, simulator workflows, device automation, and simulator-backed web previews.
|
|
331
344
|
- **3D/CAD:** Blender and FreeCAD specialists, OpenSCAD script-based CAD guidance, dimensional truth, editable source models, configurable products, and rendered verification.
|
|
332
345
|
- **Video:** DaVinci Resolve, conversational editing, Remotion, compositing, colour, audio, and rendered-output checks.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.34.
|
|
1
|
+
3.34.22
|
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.34.
|
|
8
|
+
# Version: 3.34.22
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1120,6 +1120,7 @@ cmd_setup() {
|
|
|
1120
1120
|
_help_commands() {
|
|
1121
1121
|
echo "Commands:"
|
|
1122
1122
|
echo " init [features] Initialize aidevops in current project"
|
|
1123
|
+
echo " project-config restore <slug> [--backup FILE] [--apply] Restore missing ignored local config only"
|
|
1123
1124
|
echo " setup --scope <s> Run scoped setup/deploy (opencode, agents, source-access, hooks, tabby, pulse, gui-desktop, ai-session, full)"
|
|
1124
1125
|
echo " init-routines Scaffold private routines repo (--org <name> | --local)"
|
|
1125
1126
|
echo " upgrade-planning Upgrade TODO.md/PLANS.md to latest templates"
|
|
@@ -1902,6 +1903,7 @@ _main_dispatch() {
|
|
|
1902
1903
|
shift 2
|
|
1903
1904
|
case "$command" in
|
|
1904
1905
|
init | i) cmd_init "$@" ;;
|
|
1906
|
+
project-config) _dispatch_helper "project-config-restore-helper.sh" "project-config-restore-helper.sh" "$@" ;;
|
|
1905
1907
|
setup) cmd_setup "$@" ;;
|
|
1906
1908
|
features | f) cmd_features ;;
|
|
1907
1909
|
status | s) cmd_status ;;
|
package/package.json
CHANGED
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.34.
|
|
20
|
+
# Version: 3.34.22
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|