gsd-opencode 1.9.0 → 1.9.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: set-profile
|
|
2
|
+
name: gsd-set-profile
|
|
3
3
|
description: Switch model profile for GSD agents (quality/balanced/budget)
|
|
4
4
|
arguments:
|
|
5
5
|
- name: profile
|
|
@@ -37,6 +37,7 @@ ls .planning/config.json 2>/dev/null
|
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
If no `.planning/` directory:
|
|
40
|
+
|
|
40
41
|
```
|
|
41
42
|
Error: No GSD project found.
|
|
42
43
|
Run /gsd-new-project first to initialize a project.
|
|
@@ -45,11 +46,13 @@ Run /gsd-new-project first to initialize a project.
|
|
|
45
46
|
## 3. Update config.json
|
|
46
47
|
|
|
47
48
|
read current config:
|
|
49
|
+
|
|
48
50
|
```bash
|
|
49
51
|
cat .planning/config.json
|
|
50
52
|
```
|
|
51
53
|
|
|
52
54
|
Update `model_profile` field (or add if missing):
|
|
55
|
+
|
|
53
56
|
```json
|
|
54
57
|
{
|
|
55
58
|
"model_profile": "$ARGUMENTS.profile"
|
|
@@ -74,6 +77,7 @@ Next spawned agents will use the new profile.
|
|
|
74
77
|
<examples>
|
|
75
78
|
|
|
76
79
|
**Switch to budget mode:**
|
|
80
|
+
|
|
77
81
|
```
|
|
78
82
|
/gsd-set-profile budget
|
|
79
83
|
|
|
@@ -89,6 +93,7 @@ Agents will now use:
|
|
|
89
93
|
```
|
|
90
94
|
|
|
91
95
|
**Switch to quality mode:**
|
|
96
|
+
|
|
92
97
|
```
|
|
93
98
|
/gsd-set-profile quality
|
|
94
99
|
|