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 +19 -16
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- 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)
|
|
@@ -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) |
|
|
1981
|
-
| Automate | `automate.md` | Scheduling, dispatch, monitoring, background orchestration |
|
|
1982
|
-
| Aidevops | `aidevops.md` | Framework development — meta-agent for improving aidevops itself |
|
|
1983
|
-
| Business | `business.md` | Company orchestration, financial ops, invoicing, strategy |
|
|
1984
|
-
| Content | `content.md` | Content creation across blog, video, audio, image, social |
|
|
1985
|
-
| Health | `health.md` | Health and wellness content, fitness, nutrition |
|
|
1986
|
-
| Legal | `legal.md` | Legal compliance, terms, privacy, GDPR |
|
|
1987
|
-
| Marketing-Sales | `marketing-sales.md` | Email campaigns, CRM, outreach, paid ads, direct response, CRO |
|
|
1988
|
-
| Product | `product.md` | Product management, PRDs, roadmaps, requirements capture |
|
|
1989
|
-
| Research | `research.md` | Technical and market research, competitive analysis |
|
|
1990
|
-
| SEO | `seo.md` | SEO audits, keyword research, GSC, schema, technical SEO |
|
|
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
|
|
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,
|
|
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
|
|
2762
|
-
aidevops config set safety.verification_tier
|
|
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.
|
|
1
|
+
3.32.20
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
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.
|
|
15
|
+
# Version: 3.32.20
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|