@frenchtoastman/oh-my-groundcontrol 0.0.8 → 0.0.11
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 +1 -40
- package/dist/agents/groundcontrol/system-prompt.d.ts +5 -2
- package/dist/index.js +11 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Install and configure by following the instructions here:
|
|
|
44
44
|
https://raw.githubusercontent.com/frenchtoasters/oh-my-groundcontrol/refs/heads/master/README.md
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
**
|
|
47
|
+
**Note:** We recommend adding `.groundcontrol/` to your project's `.gitignore` to prevent generated flight plans from being committed.
|
|
48
48
|
|
|
49
49
|
**Additional guides:**
|
|
50
50
|
- **[Antigravity Setup](docs/antigravity.md)** - Complete guide for Antigravity provider configuration
|
|
@@ -83,26 +83,6 @@ The principles driving our agent behavior are extracted directly from the [NASA
|
|
|
83
83
|
|
|
84
84
|
*Those who plan, perceive, and verify before the launch sequence begins.*
|
|
85
85
|
|
|
86
|
-
```mermaid
|
|
87
|
-
graph TD
|
|
88
|
-
U["🧑 User"] -->|"request"| P["🏛️ Groundcontrol"]
|
|
89
|
-
P -->|"gap analysis"| S["👁️ PreFlight"]
|
|
90
|
-
P -->|"codebase recon"| E["🧭 Explorer"]
|
|
91
|
-
P -->|"knowledge retrieval"| L["📜 Librarian"]
|
|
92
|
-
P -->|"plan verification"| M["⚖️ Verification"]
|
|
93
|
-
S -.->|"risks & gaps"| P
|
|
94
|
-
E -.->|"file map"| P
|
|
95
|
-
L -.->|"docs & references"| P
|
|
96
|
-
M -.->|"PASS / FAIL"| P
|
|
97
|
-
P -->|"approved plan"| O["👑 Orchestrator"]
|
|
98
|
-
|
|
99
|
-
style P fill:#2d4a22,stroke:#4a7c34,color:#fff
|
|
100
|
-
style S fill:#4a3728,stroke:#7a5a3e,color:#fff
|
|
101
|
-
style E fill:#1a3a4a,stroke:#2a6a8a,color:#fff
|
|
102
|
-
style L fill:#3a2a4a,stroke:#6a4a8a,color:#fff
|
|
103
|
-
style M fill:#4a4a1a,stroke:#8a8a2a,color:#fff
|
|
104
|
-
style O fill:#4a2a1a,stroke:#8a4a2a,color:#fff
|
|
105
|
-
```
|
|
106
86
|
|
|
107
87
|
---
|
|
108
88
|
|
|
@@ -200,25 +180,6 @@ graph TD
|
|
|
200
180
|
|
|
201
181
|
*Those who explore, advise, and execute once the plan is authorized.*
|
|
202
182
|
|
|
203
|
-
```mermaid
|
|
204
|
-
graph TD
|
|
205
|
-
P["🏛️ Groundcontrol"] -->|"approved plan"| O["👑 Orchestrator"]
|
|
206
|
-
O -->|"implementation"| F["⚒️ Fixer"]
|
|
207
|
-
O -->|"UI/UX"| D["🎨 Designer"]
|
|
208
|
-
O -->|"codebase recon"| E["🧭 Explorer"]
|
|
209
|
-
O -->|"architecture advice"| R["🔮 Oracle"]
|
|
210
|
-
F -.->|"code changes"| O
|
|
211
|
-
D -.->|"visual polish"| O
|
|
212
|
-
E -.->|"file map"| O
|
|
213
|
-
R -.->|"guidance"| O
|
|
214
|
-
|
|
215
|
-
style O fill:#4a2a1a,stroke:#8a4a2a,color:#fff
|
|
216
|
-
style F fill:#3a3a3a,stroke:#6a6a6a,color:#fff
|
|
217
|
-
style D fill:#4a1a3a,stroke:#8a2a6a,color:#fff
|
|
218
|
-
style E fill:#1a3a4a,stroke:#2a6a8a,color:#fff
|
|
219
|
-
style R fill:#2a2a4a,stroke:#4a4a8a,color:#fff
|
|
220
|
-
style P fill:#2d4a22,stroke:#4a7c34,color:#fff
|
|
221
|
-
```
|
|
222
183
|
|
|
223
184
|
---
|
|
224
185
|
|
|
@@ -9,8 +9,11 @@ export declare const GROUNDCONTROL_SYSTEM_PROMPT = "<system-reminder>\n# Groundc
|
|
|
9
9
|
* Question permission allows agent to ask user questions.
|
|
10
10
|
*/
|
|
11
11
|
export declare const GROUNDCONTROL_PERMISSION: {
|
|
12
|
-
edit:
|
|
13
|
-
|
|
12
|
+
edit: {
|
|
13
|
+
'.groundcontrol/**/*': "allow";
|
|
14
|
+
'*': "ask";
|
|
15
|
+
};
|
|
16
|
+
bash: "ask";
|
|
14
17
|
webfetch: "allow";
|
|
15
18
|
question: "allow";
|
|
16
19
|
};
|
package/dist/index.js
CHANGED
|
@@ -20820,8 +20820,11 @@ ${GROUNDCONTROL_HIGH_ACCURACY_MODE}
|
|
|
20820
20820
|
${GROUNDCONTROL_PLAN_TEMPLATE}
|
|
20821
20821
|
${GROUNDCONTROL_BEHAVIORAL_SUMMARY}`;
|
|
20822
20822
|
var GROUNDCONTROL_PERMISSION = {
|
|
20823
|
-
edit:
|
|
20824
|
-
|
|
20823
|
+
edit: {
|
|
20824
|
+
".groundcontrol/**/*": "allow",
|
|
20825
|
+
"*": "ask"
|
|
20826
|
+
},
|
|
20827
|
+
bash: "ask",
|
|
20825
20828
|
webfetch: "allow",
|
|
20826
20829
|
question: "allow"
|
|
20827
20830
|
};
|
|
@@ -23140,13 +23143,13 @@ function createAutoUpdateCheckerHook(ctx, options = {}) {
|
|
|
23140
23143
|
const displayVersion = localDevVersion ?? cachedVersion;
|
|
23141
23144
|
if (localDevVersion) {
|
|
23142
23145
|
if (showStartupToast) {
|
|
23143
|
-
showToast(ctx, `OMO-
|
|
23146
|
+
showToast(ctx, `OMO-Groundcontrol ${displayVersion} (dev)`, "Running in local development mode.", "info");
|
|
23144
23147
|
}
|
|
23145
23148
|
log("[auto-update-checker] Local development mode");
|
|
23146
23149
|
return;
|
|
23147
23150
|
}
|
|
23148
23151
|
if (showStartupToast) {
|
|
23149
|
-
showToast(ctx, `OMO-
|
|
23152
|
+
showToast(ctx, `OMO-Groundcontrol ${displayVersion ?? "unknown"}`, "oh-my-groundcontrol is active.", "info");
|
|
23150
23153
|
}
|
|
23151
23154
|
runBackgroundUpdateCheck(ctx, autoUpdate).catch((err) => {
|
|
23152
23155
|
log("[auto-update-checker] Background update check failed:", err);
|
|
@@ -23179,14 +23182,14 @@ async function runBackgroundUpdateCheck(ctx, autoUpdate) {
|
|
|
23179
23182
|
}
|
|
23180
23183
|
log(`[auto-update-checker] Update available (${channel}): ${currentVersion} \u2192 ${latestVersion}`);
|
|
23181
23184
|
if (!autoUpdate) {
|
|
23182
|
-
showToast(ctx, `OMO-
|
|
23185
|
+
showToast(ctx, `OMO-Groundcontrol ${latestVersion}`, `v${latestVersion} available. Restart to apply.`, "info", 8000);
|
|
23183
23186
|
log("[auto-update-checker] Auto-update disabled, notification only");
|
|
23184
23187
|
return;
|
|
23185
23188
|
}
|
|
23186
23189
|
if (pluginInfo.isPinned) {
|
|
23187
23190
|
const updated = updatePinnedVersion(pluginInfo.configPath, pluginInfo.entry, latestVersion);
|
|
23188
23191
|
if (!updated) {
|
|
23189
|
-
showToast(ctx, `OMO-
|
|
23192
|
+
showToast(ctx, `OMO-Groundcontrol ${latestVersion}`, `v${latestVersion} available. Restart to apply.`, "info", 8000);
|
|
23190
23193
|
log("[auto-update-checker] Failed to update pinned version in config");
|
|
23191
23194
|
return;
|
|
23192
23195
|
}
|
|
@@ -23195,11 +23198,11 @@ async function runBackgroundUpdateCheck(ctx, autoUpdate) {
|
|
|
23195
23198
|
invalidatePackage(PACKAGE_NAME);
|
|
23196
23199
|
const installSuccess = await runBunInstallSafe(ctx);
|
|
23197
23200
|
if (installSuccess) {
|
|
23198
|
-
showToast(ctx, "OMO-
|
|
23201
|
+
showToast(ctx, "OMO-Groundcontrol Updated!", `v${currentVersion} \u2192 v${latestVersion}
|
|
23199
23202
|
Restart OpenCode to apply.`, "success", 8000);
|
|
23200
23203
|
log(`[auto-update-checker] Update installed: ${currentVersion} \u2192 ${latestVersion}`);
|
|
23201
23204
|
} else {
|
|
23202
|
-
showToast(ctx, `OMO-
|
|
23205
|
+
showToast(ctx, `OMO-Groundcontrol ${latestVersion}`, `v${latestVersion} available. Restart to apply.`, "info", 8000);
|
|
23203
23206
|
log("[auto-update-checker] bun install failed; update not installed");
|
|
23204
23207
|
}
|
|
23205
23208
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frenchtoastman/oh-my-groundcontrol",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.11",
|
|
4
|
+
"description": "An OpenCode plugin for multi-agent orchestration for structured planning with NASA-style guardrails.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|