aidevops 3.32.18 → 3.32.20

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
@@ -60,7 +60,7 @@ The result: an AI operations platform that manages projects across every busines
60
60
  [![Copyright](https://img.shields.io/badge/Copyright-Marcus%20Quinn%202025--2026-blue.svg)](https://github.com/marcusquinn)
61
61
 
62
62
  <!-- Release & Version Info -->
63
- [![Version](https://img.shields.io/badge/Version-3.32.18-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
63
+ [![Version](https://img.shields.io/badge/Version-3.32.20-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
64
64
  [![npm version](https://img.shields.io/npm/v/aidevops)](https://www.npmjs.com/package/aidevops)
65
65
  [![Homebrew](https://img.shields.io/badge/homebrew-marcusquinn%2Ftap-orange)](https://github.com/marcusquinn/homebrew-tap)
66
66
  [![GitHub repository](https://img.shields.io/badge/github-repository-181717.svg?logo=github)](https://github.com/marcusquinn/aidevops)
@@ -1977,17 +1977,17 @@ Primary agents live at `.agents/<name>.md`. Each is a domain expert with its own
1977
1977
 
1978
1978
  | Name | File | Purpose | Model Tier |
1979
1979
  |------|------|---------|------------|
1980
- | Build+ | `build-plus.md` | Code: features, bug fixes, refactors, CI, full-loop delivery (default) | opus |
1981
- | Automate | `automate.md` | Scheduling, dispatch, monitoring, background orchestration | sonnet |
1982
- | Aidevops | `aidevops.md` | Framework development — meta-agent for improving aidevops itself | opus |
1983
- | Business | `business.md` | Company orchestration, financial ops, invoicing, strategy | sonnet |
1984
- | Content | `content.md` | Content creation across blog, video, audio, image, social | opus |
1985
- | Health | `health.md` | Health and wellness content, fitness, nutrition | opus |
1986
- | Legal | `legal.md` | Legal compliance, terms, privacy, GDPR | opus |
1987
- | Marketing-Sales | `marketing-sales.md` | Email campaigns, CRM, outreach, paid ads, direct response, CRO | opus |
1988
- | Product | `product.md` | Product management, PRDs, roadmaps, requirements capture | opus |
1989
- | Research | `research.md` | Technical and market research, competitive analysis | gemini/grok |
1990
- | SEO | `seo.md` | SEO audits, keyword research, GSC, schema, technical SEO | opus |
1980
+ | Build+ | `build-plus.md` | Code: features, bug fixes, refactors, CI, full-loop delivery (default) | thinking |
1981
+ | Automate | `automate.md` | Scheduling, dispatch, monitoring, background orchestration | standard |
1982
+ | Aidevops | `aidevops.md` | Framework development — meta-agent for improving aidevops itself | thinking |
1983
+ | Business | `business.md` | Company orchestration, financial ops, invoicing, strategy | standard |
1984
+ | Content | `content.md` | Content creation across blog, video, audio, image, social | thinking |
1985
+ | Health | `health.md` | Health and wellness content, fitness, nutrition | thinking |
1986
+ | Legal | `legal.md` | Legal compliance, terms, privacy, GDPR | thinking |
1987
+ | Marketing-Sales | `marketing-sales.md` | Email campaigns, CRM, outreach, paid ads, direct response, CRO | thinking |
1988
+ | Product | `product.md` | Product management, PRDs, roadmaps, requirements capture | thinking |
1989
+ | Research | `research.md` | Technical and market research, competitive analysis | standard |
1990
+ | SEO | `seo.md` | SEO audits, keyword research, GSC, schema, technical SEO | thinking |
1991
1991
 
1992
1992
  **Specialist subagents** (e.g. `@wordpress`, `@seo`, Build-Agent, Build-MCP, etc.) live under `.agents/tools/` or as `mode: subagent` files and are invoked via `@mention` when domain expertise is needed. See `subagent-index.toon` for the full roster. For read-only macOS Activity Monitor and background-efficiency audits, use `@macos-activity-cleaner` or `/aidevops-macos-activity-cleaner`.
1993
1993
 
@@ -2288,8 +2288,11 @@ Task → Implement → Check → Fix Issues → Re-check → ... → Complete
2288
2288
  # Run quality checks iteratively until all pass
2289
2289
  /preflight-loop --auto-fix --max-iterations <MAX_ITERATIONS>
2290
2290
 
2291
- # Or run linters directly
2291
+ # Or run changed-file checks directly (the default)
2292
2292
  .agents/scripts/linters-local.sh
2293
+
2294
+ # Run every broad gate at a release boundary
2295
+ .agents/scripts/linters-local.sh --full
2293
2296
  ```
2294
2297
 
2295
2298
  **Note:** Store any API credentials securely via environment variables or `.env` files (never commit credentials to version control).
@@ -2464,7 +2467,7 @@ memory-helper.sh recall "how to optimize queries" --semantic
2464
2467
 
2465
2468
  ```bash
2466
2469
  # Record what worked (via memory system)
2467
- memory-helper.sh store --type SUCCESS_PATTERN --content "Structured debugging found root cause" --tags "bugfix,sonnet"
2470
+ memory-helper.sh store --type SUCCESS_PATTERN --content "Structured debugging found root cause" --tags "bugfix,standard"
2468
2471
 
2469
2472
  # Record what failed
2470
2473
  memory-helper.sh store --type FAILURE_PATTERN --content "Blind refactor without tests caused regressions" --tags "refactor"
@@ -2758,8 +2761,8 @@ aidevops is configured through two JSONC/JSON files that control framework behav
2758
2761
  # Disable automatic updates
2759
2762
  aidevops config set updates.auto_update false
2760
2763
 
2761
- # Use opus-tier verification for destructive operations
2762
- aidevops config set safety.verification_tier opus
2764
+ # Use thinking-tier verification for destructive operations
2765
+ aidevops config set safety.verification_tier thinking
2763
2766
 
2764
2767
  # View all current config values
2765
2768
  aidevops config list
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.32.18
1
+ 3.32.20
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.18
8
+ # Version: 3.32.20
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.32.18",
3
+ "version": "3.32.20",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "workspaces": [
package/setup.sh CHANGED
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
12
12
  # AI Assistant Server Access Framework Setup Script
13
13
  # Helps developers set up the framework for their infrastructure
14
14
  #
15
- # Version: 3.32.18
15
+ # Version: 3.32.20
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)