aidevops 2.87.3 → 2.88.0
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 +31 -11
- package/VERSION +1 -1
- package/aidevops.sh +2 -2
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -91,10 +91,10 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
91
91
|
|
|
92
92
|
### Agent Structure
|
|
93
93
|
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
94
|
+
- 15 primary agents (Plan+, Build+, SEO, Marketing, etc.)
|
|
95
|
+
- 552+ subagent markdown files organized by domain
|
|
96
|
+
- 147 helper scripts in `.agent/scripts/`
|
|
97
|
+
- 14 slash commands for common workflows
|
|
98
98
|
|
|
99
99
|
<!-- AI-CONTEXT-END -->
|
|
100
100
|
|
|
@@ -445,7 +445,9 @@ See `.agent/tools/terminal/terminal-title.md` for customization options.
|
|
|
445
445
|
**Quality Control & Monitoring:**
|
|
446
446
|
|
|
447
447
|
- **Multi-Platform Analysis**: SonarCloud, CodeFactor, Codacy, CodeRabbit, Qlty, Gemini Code Assist, Snyk
|
|
448
|
-
- **Performance Auditing**: PageSpeed Insights
|
|
448
|
+
- **Performance Auditing**: PageSpeed Insights, Lighthouse, Core Web Vitals (`/performance` command)
|
|
449
|
+
- **SEO Debugging**: Open Graph validation, favicon checker, social preview testing
|
|
450
|
+
- **Email Deliverability**: SPF/DKIM/DMARC/MX validation, blacklist checking
|
|
449
451
|
- **Uptime Monitoring**: Updown.io integration for website and SSL monitoring
|
|
450
452
|
|
|
451
453
|
## **Imported Skills**
|
|
@@ -491,7 +493,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
|
|
|
491
493
|
|
|
492
494
|
| Pattern | Description | aidevops Implementation |
|
|
493
495
|
|---------|-------------|------------------------|
|
|
494
|
-
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`,
|
|
496
|
+
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 146 helper scripts |
|
|
495
497
|
| **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
|
|
496
498
|
| **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
|
|
497
499
|
| **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
|
|
@@ -1166,7 +1168,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
|
|
|
1166
1168
|
/plugin install aidevops@aidevops
|
|
1167
1169
|
```
|
|
1168
1170
|
|
|
1169
|
-
This installs the complete framework:
|
|
1171
|
+
This installs the complete framework: 15 primary agents, 552+ subagents, and 147 helper scripts.
|
|
1170
1172
|
|
|
1171
1173
|
### Importing External Skills
|
|
1172
1174
|
|
|
@@ -1254,7 +1256,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota
|
|
|
1254
1256
|
|
|
1255
1257
|
### **Example Subagents with MCP Integration**
|
|
1256
1258
|
|
|
1257
|
-
These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of
|
|
1259
|
+
These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 552+ subagents organized by domain.
|
|
1258
1260
|
|
|
1259
1261
|
| Agent | Purpose | MCPs Enabled |
|
|
1260
1262
|
|-------|---------|--------------|
|
|
@@ -1268,6 +1270,7 @@ These are examples of subagents that have supporting MCPs enabled. See `.agent/`
|
|
|
1268
1270
|
| `@list-keys` | List all configured API keys and storage locations | (read-only) |
|
|
1269
1271
|
| `@code-standards` | Quality standards reference, compliance checking | context7 |
|
|
1270
1272
|
| `@browser-automation` | Testing, scraping, DevTools | chrome-devtools, context7 |
|
|
1273
|
+
| `@performance` | Core Web Vitals, network analysis, accessibility | chrome-devtools |
|
|
1271
1274
|
| `@git-platforms` | GitHub, GitLab, Gitea | gh_grep, context7 |
|
|
1272
1275
|
| `@agent-review` | Session analysis, agent improvement (under build-agent/) | (read/write only) |
|
|
1273
1276
|
|
|
@@ -1404,6 +1407,7 @@ Configure time tracking per-repo via `.aidevops.json`.
|
|
|
1404
1407
|
| `/code-standards` | Check against documented quality standards |
|
|
1405
1408
|
| `/code-simplifier` | Simplify and refine code for clarity and maintainability |
|
|
1406
1409
|
| `/list-keys` | List all configured API keys and their storage locations |
|
|
1410
|
+
| `/performance` | Web performance audit (Core Web Vitals, Lighthouse, PageSpeed) |
|
|
1407
1411
|
| `/pr` | Unified PR workflow (orchestrates all checks) |
|
|
1408
1412
|
|
|
1409
1413
|
**Content Workflow**:
|
|
@@ -1421,6 +1425,19 @@ Configure time tracking per-repo via `.aidevops.json`.
|
|
|
1421
1425
|
| `/keyword-research-extended` | Full SERP analysis with weakness detection |
|
|
1422
1426
|
| `/webmaster-keywords` | Keywords from GSC + Bing for your verified sites |
|
|
1423
1427
|
|
|
1428
|
+
**SEO Debugging** (subagents in `seo/`):
|
|
1429
|
+
|
|
1430
|
+
| Subagent | Purpose |
|
|
1431
|
+
|----------|---------|
|
|
1432
|
+
| `@debug-opengraph` | Validate Open Graph meta tags, preview social sharing |
|
|
1433
|
+
| `@debug-favicon` | Validate favicon setup across platforms (ico, apple-touch, manifest) |
|
|
1434
|
+
|
|
1435
|
+
**Email Deliverability**:
|
|
1436
|
+
|
|
1437
|
+
| Command | Purpose |
|
|
1438
|
+
|---------|---------|
|
|
1439
|
+
| `/email-health-check` | Check SPF/DKIM/DMARC/MX records and blacklist status |
|
|
1440
|
+
|
|
1424
1441
|
**Release Workflow** (in order):
|
|
1425
1442
|
|
|
1426
1443
|
| Command | Purpose |
|
|
@@ -1431,6 +1448,8 @@ Configure time tracking per-repo via `.aidevops.json`.
|
|
|
1431
1448
|
| `/release` | Full release workflow (bump, tag, GitHub release, auto-changelog) |
|
|
1432
1449
|
| `/postflight` | Verify release health after deployment |
|
|
1433
1450
|
|
|
1451
|
+
**Auto-Task Completion**: The release workflow automatically marks tasks as complete when commit messages reference them (e.g., `Closes t037`, `Fixes t042`). Tasks in `TODO.md` are updated with `completed:` timestamps.
|
|
1452
|
+
|
|
1434
1453
|
**Documentation**:
|
|
1435
1454
|
|
|
1436
1455
|
| Command | Purpose |
|
|
@@ -1792,7 +1811,8 @@ bash .agent/scripts/continue-cli.sh review
|
|
|
1792
1811
|
- **[API Integrations](.agent/aidevops/api-integrations.md)** - Service APIs
|
|
1793
1812
|
- **[Browser Automation](.agent/tools/browser/browser-automation.md)** - 6 tools + anti-detect stack: decision tree, parallel, extensions, fingerprinting
|
|
1794
1813
|
- **[Anti-Detect Browser](.agent/tools/browser/anti-detect-browser.md)** - Multi-profile management, fingerprint rotation, proxy integration
|
|
1795
|
-
- **[
|
|
1814
|
+
- **[Web Performance](.agent/tools/performance/performance.md)** - Core Web Vitals, network dependencies, accessibility (Chrome DevTools MCP)
|
|
1815
|
+
- **[PageSpeed](.agent/tools/browser/pagespeed.md)** - Lighthouse CLI and PageSpeed Insights API
|
|
1796
1816
|
- **[Pandoc](.agent/tools/conversion/pandoc.md)** - Document format conversion
|
|
1797
1817
|
- **[Security](.agent/aidevops/security.md)** - Enterprise security standards
|
|
1798
1818
|
|
|
@@ -1806,8 +1826,8 @@ aidevops/
|
|
|
1806
1826
|
├── AGENTS.md # AI agent guidance (dev)
|
|
1807
1827
|
├── .agent/ # Agents and documentation
|
|
1808
1828
|
│ ├── AGENTS.md # User guide (deployed to ~/.aidevops/agents/)
|
|
1809
|
-
│ ├── *.md #
|
|
1810
|
-
│ ├── scripts/ #
|
|
1829
|
+
│ ├── *.md # 15 primary agents
|
|
1830
|
+
│ ├── scripts/ # 146 helper scripts
|
|
1811
1831
|
│ ├── tools/ # Cross-domain utilities (video, browser, git, etc.)
|
|
1812
1832
|
│ ├── services/ # External service integrations
|
|
1813
1833
|
│ └── workflows/ # Development process guides
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.88.0
|
package/aidevops.sh
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# AI DevOps Framework CLI
|
|
4
4
|
# Usage: aidevops <command> [options]
|
|
5
5
|
#
|
|
6
|
-
# Version: 2.
|
|
6
|
+
# Version: 2.88.0
|
|
7
7
|
|
|
8
8
|
set -euo pipefail
|
|
9
9
|
|
|
@@ -495,7 +495,7 @@ cmd_status() {
|
|
|
495
495
|
"$HOME/.cursor/rules:Cursor"
|
|
496
496
|
"$HOME/.claude/commands:Claude Code"
|
|
497
497
|
"$HOME/.continue:Continue.dev"
|
|
498
|
-
"$HOME/CLAUDE.md:Claude
|
|
498
|
+
"$HOME/CLAUDE.md:Claude Code memory"
|
|
499
499
|
"$HOME/GEMINI.md:Gemini CLI memory"
|
|
500
500
|
"$HOME/.cursorrules:Cursor rules"
|
|
501
501
|
)
|
package/package.json
CHANGED
package/setup.sh
CHANGED