aidevops 3.1.434 → 3.1.435

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
@@ -2445,7 +2445,7 @@ bash .agents/scripts/continue-cli.sh review
2445
2445
  **Wiki Guides:**
2446
2446
 
2447
2447
  - **[Getting Started](.wiki/Getting-Started.md)** - Installation and setup
2448
- - **[Configuration Reference](docs/configuration.md)** - All JSONC/JSON config options, types, defaults, and examples
2448
+ - **[Configuration Reference](.agents/reference/configuration.md)** - All JSONC/JSON config options, types, defaults, and examples
2449
2449
  - **[CLI Reference](.wiki/CLI-Reference.md)** - aidevops command documentation
2450
2450
  - **[MCP Integrations](.wiki/MCP-Integrations.md)** - MCP servers setup
2451
2451
  - **[Providers](.wiki/Providers.md)** - Service provider configurations
@@ -2490,8 +2490,8 @@ aidevops is configured through two JSONC/JSON files that control framework behav
2490
2490
 
2491
2491
  | File | Purpose | CLI |
2492
2492
  |------|---------|-----|
2493
- | [`~/.config/aidevops/config.jsonc`](docs/configuration.md#configjsonc--full-reference) | Framework config: updates, models, safety, quality, orchestration, paths | `aidevops config` |
2494
- | [`~/.config/aidevops/settings.json`](docs/configuration.md#settingsjson--full-reference) | User preferences: onboarding, UI, model routing defaults | `settings-helper.sh` |
2493
+ | [`~/.config/aidevops/config.jsonc`](.agents/reference/configuration.md#configjsonc--full-reference) | Framework config: updates, models, safety, quality, orchestration, paths | `aidevops config` |
2494
+ | [`~/.config/aidevops/settings.json`](.agents/reference/configuration.md#settingsjson--full-reference) | User preferences: onboarding, UI, model routing defaults | `settings-helper.sh` |
2495
2495
 
2496
2496
  **Quick examples:**
2497
2497
 
@@ -2509,7 +2509,7 @@ aidevops config list
2509
2509
  aidevops config validate
2510
2510
  ```
2511
2511
 
2512
- **Precedence:** Environment variables (`AIDEVOPS_*`) > config file > built-in defaults. See the **[full configuration reference](docs/configuration.md)** for every option, type, default, and example.
2512
+ **Precedence:** Environment variables (`AIDEVOPS_*`) > config file > built-in defaults. See the **[full configuration reference](.agents/reference/configuration.md)** for every option, type, default, and example.
2513
2513
 
2514
2514
  ### Service Credentials
2515
2515
 
@@ -2528,7 +2528,7 @@ cp configs/hetzner-config.json.txt configs/hetzner-config.json
2528
2528
  bash .agents/scripts/setup-mcp-integrations.sh all
2529
2529
  ```
2530
2530
 
2531
- See [docs/configuration.md](docs/configuration.md#service-configuration-templates) for details on the template system and credential security.
2531
+ See [.agents/reference/configuration.md](.agents/reference/configuration.md#service-configuration-templates) for details on the template system and credential security.
2532
2532
 
2533
2533
  ## **Security & Best Practices**
2534
2534
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.434
1
+ 3.1.435
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 3.1.434
6
+ # Version: 3.1.435
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": "3.1.434",
3
+ "version": "3.1.435",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
package/setup.sh CHANGED
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
10
10
  # AI Assistant Server Access Framework Setup Script
11
11
  # Helps developers set up the framework for their infrastructure
12
12
  #
13
- # Version: 3.1.434
13
+ # Version: 3.1.435
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)