aidevops 3.32.156 → 3.32.157

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.156-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
63
+ [![Version](https://img.shields.io/badge/Version-3.32.157-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)
@@ -326,19 +326,23 @@ Initialize **[aidevops](https://aidevops.sh)** features in any git repository:
326
326
 
327
327
  ```bash
328
328
  cd ~/your-project
329
- aidevops init # Enable all features
329
+ aidevops init # Enable the default feature set
330
330
  aidevops init planning # Enable only planning
331
331
  aidevops init planning,time-tracking # Enable specific features
332
+ aidevops init deployment-context # Scaffold a deployment manifest
333
+ aidevops init wordpress-context # Scaffold WordPress + deployment manifests
332
334
  ```
333
335
 
334
336
  This creates:
335
337
  - `.aidevops.json` - Configuration with enabled features
336
- - `.agents` symlink `~/.aidevops/agents/`
338
+ - `.agents/AGENTS.md` - Project-specific agent context
337
339
  - `TODO.md` - Quick task tracking with time estimates
338
340
  - `todo/PLANS.md` - Complex execution plans
339
341
  - `.beads/` - Task graph database (if beads enabled)
342
+ - `.aidevops/deployments.yaml` - Deployment instance inventory (opt-in)
343
+ - `.aidevops/wordpress.yaml` - WordPress and LocalWP context (opt-in)
340
344
 
341
- **Available features:** `planning`, `git-workflow`, `code-quality`, `time-tracking`, `beads`
345
+ **Available features:** `planning`, `git-workflow`, `code-quality`, `time-tracking`, `database`, `beads`, `sops`, `security`, `deployment-context`, `wordpress-context`. `hosting-context` is an alias for `deployment-context`; `wordpress-context` implies deployment context. The default `all` set intentionally excludes both project-instance context features.
342
346
 
343
347
  ### Per-repo platform setup
344
348
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.32.156
1
+ 3.32.157
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.156
8
+ # Version: 3.32.157
9
9
 
10
10
  set -euo pipefail
11
11
 
@@ -619,6 +619,14 @@ cmd_features() {
619
619
  echo " - Collaborator access audit"
620
620
  echo " - Re-run anytime: aidevops security audit"
621
621
  echo ""
622
+ echo " deployment-context Tracked project deployment inventory"
623
+ echo " - Creates .aidevops/deployments.yaml"
624
+ echo " - Alias: hosting-context"
625
+ echo ""
626
+ echo " wordpress-context Tracked WordPress and LocalWP project context"
627
+ echo " - Creates both project context manifests"
628
+ echo " - Includes deployment-context automatically"
629
+ echo ""
622
630
  echo "Extensibility:"
623
631
  echo ""
624
632
  echo " plugins Third-party agent plugins (configured in .aidevops.json)"
@@ -628,12 +636,14 @@ cmd_features() {
628
636
  echo " - See: .agents/aidevops/plugins.md"
629
637
  echo ""
630
638
  echo "Usage:"
631
- echo " aidevops init # Enable all features (except sops)"
639
+ echo " aidevops init # Enable default features (except sops and project contexts)"
632
640
  echo " aidevops init planning # Enable only planning"
633
641
  echo " aidevops init sops # Enable SOPS encryption"
634
642
  echo " aidevops init security # Enable security posture checks"
635
643
  echo " aidevops init beads # Enable beads (includes planning)"
636
644
  echo " aidevops init database # Enable only database"
645
+ echo " aidevops init deployment-context # Scaffold deployment inventory"
646
+ echo " aidevops init wordpress-context # Scaffold WordPress + deployment context"
637
647
  echo " aidevops init planning,security # Enable multiple"
638
648
  echo ""
639
649
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.32.156",
3
+ "version": "3.32.157",
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
@@ -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.156
20
+ # Version: 3.32.157
21
21
  #
22
22
  # Quick Install:
23
23
  # npm install -g aidevops && aidevops update (recommended)