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 +5 -5
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
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](
|
|
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`](
|
|
2494
|
-
| [`~/.config/aidevops/settings.json`](
|
|
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](
|
|
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 [
|
|
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.
|
|
1
|
+
3.1.435
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
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.
|
|
13
|
+
# Version: 3.1.435
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|