aidevops 3.32.179 → 3.32.181
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 +4 -2
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +22 -3
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)
|
|
@@ -670,6 +670,7 @@ See `.agents/tools/terminal/terminal-title.md` for customization options.
|
|
|
670
670
|
|
|
671
671
|
- **[Bundles](#project-bundles-auto-configuration)** - Project-type presets that auto-configure model tiers, quality gates, and agent routing per repo. 7 built-in bundles (web-app, library, cli-tool, content-site, infrastructure, agent, schema) with auto-detection from marker files (`bundle-helper.sh`)
|
|
672
672
|
- **TTSR rules** - Soft rule engine (`ttsr-rule-loader.sh`) with `.agents/rules/` directory for AI output correction (e.g., no-edit-on-main, no-glob-for-discovery)
|
|
673
|
+
- **Unified review** - `/review` applies one evidence and finding contract to issues, PRs, local patches, branches, and commits. Workflow-owned findings are verified and repaired autonomously; ad-hoc human reviews can remain report-only
|
|
673
674
|
- **Cross-review** - `/cross-review` dispatches the same prompt to multiple AI models in parallel, diffs results, and optionally auto-scores via a judge model
|
|
674
675
|
- **Local models** - Run AI models locally via llama.cpp for free, private, offline inference (`local-model-helper.sh`) with HuggingFace GGUF model management
|
|
675
676
|
- **Tech stack lookup** - `/tech-stack` detects technology stacks of URLs or finds sites using specific technologies (Wappalyzer, httpx, nuclei, BuiltWith)
|
|
@@ -687,7 +688,7 @@ See `.agents/tools/terminal/terminal-title.md` for customization options.
|
|
|
687
688
|
|
|
688
689
|
- **SimpleX bot** - Channel-agnostic gateway with SimpleX Chat as first adapter for AI agent dispatch (`simplex-bot/`)
|
|
689
690
|
- **Matterbridge** - Multi-platform chat bridge connecting 20+ platforms including Matrix, Discord, Telegram, Slack, IRC, WhatsApp, XMPP (`matterbridge-helper.sh`)
|
|
690
|
-
- **X API via xurl** - Official X/Twitter API operations through guarded `xurl` workflows for search, timelines, bookmarks, posting, replies, DMs, media, and raw API reads. Supports multiple X developer apps/subscription tiers with `--app` and multiple authenticated accounts with `--username`; model-provider auth such as OpenCode xAI/Grok remains separate from X API OAuth (`content/social-xurl.md`, `xurl-helper.sh`)
|
|
691
|
+
- **X API via xurl** - Official X/Twitter API operations through guarded `xurl` workflows for search, timelines, bookmarks, posting, replies, DMs, media, and raw API reads, plus an owner-only approval-bound queue for immediate/scheduled shared-account posts, replies, likes, bookmarks, receipts, and mention/reply workflow state. Supports multiple X developer apps/subscription tiers with `--app` and multiple authenticated accounts with `--username`; model-provider auth such as OpenCode xAI/Grok remains separate from X API OAuth (`content/social-xurl.md`, `knowledge-social-helper.sh`, `xurl-helper.sh`)
|
|
691
692
|
- **Localdev** - Local development environment manager with dnsmasq, Traefik, mkcert for production-like `.local` domains with HTTPS (`localdev-helper.sh`)
|
|
692
693
|
|
|
693
694
|
**MCP Toolkit:**
|
|
@@ -2200,6 +2201,7 @@ Configure time tracking per-repo via `.aidevops.json`.
|
|
|
2200
2201
|
| `/list-keys` | List all configured API keys and their storage locations |
|
|
2201
2202
|
| `/performance` | Web performance audit (Core Web Vitals, Lighthouse, PageSpeed) |
|
|
2202
2203
|
| `/pr` | Unified PR workflow (orchestrates all checks) |
|
|
2204
|
+
| `/review` | Review an issue, PR, local patch, branch, or commit through the shared review core |
|
|
2203
2205
|
| `/cross-review` | Dispatch prompt to multiple AI models, diff results, auto-score |
|
|
2204
2206
|
| `/tech-stack` | Detect technology stacks of URLs or find sites using specific technologies |
|
|
2205
2207
|
| `/mission` | Scope a high-level goal into milestones and features for autonomous execution |
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.32.
|
|
1
|
+
3.32.181
|
package/aidevops.sh
CHANGED
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.32.
|
|
20
|
+
# Version: 3.32.181
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -351,6 +351,8 @@ unset _setup_script_dir
|
|
|
351
351
|
SETUP_IMPL_MODULES_DIR="${SETUP_MODULES_DIR}/modules"
|
|
352
352
|
# shellcheck source=.agents/scripts/runtime-bundle-verifier.sh
|
|
353
353
|
source "${INSTALL_DIR}/.agents/scripts/runtime-bundle-verifier.sh"
|
|
354
|
+
# shellcheck source=.agents/scripts/pulse-runtime-pin.sh
|
|
355
|
+
source "${INSTALL_DIR}/.agents/scripts/pulse-runtime-pin.sh"
|
|
354
356
|
# shellcheck disable=SC1091 # Dynamic path via $SETUP_IMPL_MODULES_DIR
|
|
355
357
|
source "${SETUP_IMPL_MODULES_DIR}/core.sh"
|
|
356
358
|
# shellcheck disable=SC1091
|
|
@@ -1458,6 +1460,7 @@ _setup_run_scoped_stage() {
|
|
|
1458
1460
|
;;
|
|
1459
1461
|
"$SETUP_STAGE_PULSE")
|
|
1460
1462
|
_time_step "$SETUP_STAGE_PULSE" setup_supervisor_pulse "$os"
|
|
1463
|
+
_time_step "setup_pulse_merge_routine" setup_pulse_merge_routine
|
|
1461
1464
|
;;
|
|
1462
1465
|
"$SETUP_STAGE_GUI_DESKTOP")
|
|
1463
1466
|
_time_step "$SETUP_STAGE_GUI_DESKTOP" setup_gui_desktop_app
|
|
@@ -1889,6 +1892,8 @@ _setup_restart_pulse_if_running() {
|
|
|
1889
1892
|
|
|
1890
1893
|
local activated_root="${_AIDEVOPS_ACTIVE_BUNDLE_ROOT:-}"
|
|
1891
1894
|
local current_root=""
|
|
1895
|
+
local pin_rc=0
|
|
1896
|
+
local pulse_active_link="${HOME}/.aidevops/agents"
|
|
1892
1897
|
local managed_enabled="${PULSE_ENABLED:-}"
|
|
1893
1898
|
local configured_pulse_consent=""
|
|
1894
1899
|
if [[ "$managed_enabled" != "true" && "$managed_enabled" != "false" ]]; then
|
|
@@ -1900,8 +1905,22 @@ _setup_restart_pulse_if_running() {
|
|
|
1900
1905
|
*) managed_enabled=false ;;
|
|
1901
1906
|
esac
|
|
1902
1907
|
fi
|
|
1903
|
-
if current_root=$(
|
|
1908
|
+
if current_root=$(pulse_runtime_pin_resolve 2>/dev/null); then
|
|
1904
1909
|
activated_root="$current_root"
|
|
1910
|
+
pulse_active_link="$current_root"
|
|
1911
|
+
else
|
|
1912
|
+
pin_rc=$?
|
|
1913
|
+
case "$pin_rc" in
|
|
1914
|
+
1 | 3)
|
|
1915
|
+
if current_root=$(resolve_aidevops_runtime_bundle_root "${HOME}/.aidevops/agents"); then
|
|
1916
|
+
activated_root="$current_root"
|
|
1917
|
+
fi
|
|
1918
|
+
;;
|
|
1919
|
+
*)
|
|
1920
|
+
print_error "Pulse reconciliation refused an invalid runtime pin; clear or repair the private pin file"
|
|
1921
|
+
return 1
|
|
1922
|
+
;;
|
|
1923
|
+
esac
|
|
1905
1924
|
fi
|
|
1906
1925
|
if [[ -z "$activated_root" ]]; then
|
|
1907
1926
|
print_error "Pulse reconciliation failed because the activated runtime bundle could not be resolved"
|
|
@@ -1910,7 +1929,7 @@ _setup_restart_pulse_if_running() {
|
|
|
1910
1929
|
if ! _restart_pulse_if_running \
|
|
1911
1930
|
"$activated_root" \
|
|
1912
1931
|
"$managed_enabled" \
|
|
1913
|
-
"$
|
|
1932
|
+
"$pulse_active_link"; then
|
|
1914
1933
|
print_error "Pulse reconciliation failed; setup cannot verify the activated runtime bundle"
|
|
1915
1934
|
return 1
|
|
1916
1935
|
fi
|