aidevops 2.75.0 → 2.76.1

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
@@ -206,6 +206,8 @@ aidevops upgrade-planning --force # Skip confirmation prompt
206
206
 
207
207
  This preserves your existing tasks while adding TOON-enhanced parsing, dependency tracking, and better structure.
208
208
 
209
+ **Automatic detection:** `aidevops update` now scans all registered projects for outdated planning templates (comparing TOON meta version numbers) and offers to upgrade them in-place with backups.
210
+
209
211
  ### Task Graph Visualization with Beads
210
212
 
211
213
  [Beads](https://github.com/steveyegge/beads) provides task dependency tracking and graph visualization:
@@ -483,7 +485,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
483
485
  |---------|-------------|------------------------|
484
486
  | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 130+ helper scripts |
485
487
  | **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
486
- | **Progressive Disclosure** | Load context on-demand | Subagent tables, YAML frontmatter, read-on-demand |
488
+ | **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
487
489
  | **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
488
490
  | **Cache Context** | Prompt caching for cost | Stable instruction prefixes |
489
491
  | **Isolate Context** | Sub-agents with separate windows | Subagent files with specific tool permissions |
@@ -1031,7 +1033,7 @@ Call them in your AI assistant conversation with a simple @mention
1031
1033
 
1032
1034
  ### **Main Agents**
1033
1035
 
1034
- Ordered as they appear in OpenCode Tab selector and other AI assistants (14 total):
1036
+ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 total):
1035
1037
 
1036
1038
  | Name | File | Purpose | MCPs Enabled |
1037
1039
  |------|------|---------|--------------|
@@ -1048,6 +1050,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (14 tota
1048
1050
  | Research | `research.md` | Research and analysis tasks | context7, augment |
1049
1051
  | Sales | `sales.md` | Sales operations and CRM | augment |
1050
1052
  | SEO | `seo.md` | SEO optimization, Search Console, keyword research | gsc, ahrefs, dataforseo, serper, context7, augment |
1053
+ | Video | `video.md` | AI video generation, prompt engineering, programmatic video | augment |
1051
1054
  | WordPress | `wordpress.md` | WordPress ecosystem (dev, admin, MainWP, LocalWP) | localwp, context7, augment |
1052
1055
 
1053
1056
  ### **Example Subagents with MCP Integration**
@@ -1177,7 +1180,17 @@ Plans are tracked in `TODO.md` (all tasks) and `todo/PLANS.md` (complex executio
1177
1180
  | `--plans` | `/list-todo --plans` | Include full plan details |
1178
1181
  | `--compact` | `/list-todo --compact` | One-line per task |
1179
1182
 
1180
- **Time Tracking**: Tasks support time estimates and actuals with the format `~4h (ai:2h test:1h) started:2025-01-15T10:30Z`. Configure per-repo via `.aidevops.json`.
1183
+ **Time Tracking**: Tasks support time estimates as active session time (excluding AFK gaps) with the format `~4h started:2025-01-15T10:30Z`. The `session-time-helper.sh` analyses real session data to calibrate estimates vs actuals.
1184
+
1185
+ **Risk Levels**: Tasks support `risk:low/med/high` indicating human oversight needed:
1186
+
1187
+ | Risk | Oversight | Example |
1188
+ |------|-----------|---------|
1189
+ | `low` | Autonomous | Docs, formatting, simple refactors |
1190
+ | `med` | Supervised | Feature implementation, API changes |
1191
+ | `high` | Engaged | Security, data migrations, infrastructure |
1192
+
1193
+ Configure time tracking per-repo via `.aidevops.json`.
1181
1194
 
1182
1195
  **Development Workflow** (typical order):
1183
1196
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.75.0
1
+ 2.76.1
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.75.0
6
+ # Version: 2.76.1
7
7
 
8
8
  set -euo pipefail
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "2.75.0",
3
+ "version": "2.76.1",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/setup.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI Assistant Server Access Framework Setup Script
4
4
  # Helps developers set up the framework for their infrastructure
5
5
  #
6
- # Version: 2.75.0
6
+ # Version: 2.76.1
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)