@frenchtoastman/oh-my-groundcontrol 0.0.7 → 0.0.8

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.
Files changed (3) hide show
  1. package/README.md +20 -3
  2. package/dist/index.js +40 -4
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -56,9 +56,26 @@ https://raw.githubusercontent.com/frenchtoasters/oh-my-groundcontrol/refs/heads/
56
56
 
57
57
  ### Mission Control Standards Adherence
58
58
 
59
- Our planning, execution, and verification pipelines enforce protocols based on official NASA standards:
60
- - **[NASA-STD-8739.8B](https://standards.nasa.gov/system/files/tmp/NASA-STD-8739.8B.pdf)** (Software Assurance and Software Safety Standard): Ensures rigorous traceability, off-nominal scenario handling, and safety-critical QA paths during the Groundcontrol planning phase.
61
- - **[NASA-STD-7009B](https://standards.nasa.gov/sites/default/files/standards/NASA/B/1/NASA-STD-7009B-Final-3-5-2024.pdf)** (Standard for Models and Simulations): Required during complex system modeling to enforce credibility assessment before committing to architectural designs.
59
+ Our planning, execution, and verification pipelines enforce protocols based on official NASA standards. We have synthesized these into four core **NASA Guardrails** for AI agent execution:
60
+
61
+ 1. **Destructive Pause (NASA-STD-8739.8B):** Stop and request explicit user confirmation before irreversible actions (e.g., force pushing, bulk deletions).
62
+ 2. **Pre-Flight Verification (NASA-HDBK-8739.19-3):** Always run linters and typechecks (`bun run check:ci`, `bun run typecheck`) to validate changes before concluding.
63
+ 3. **Atomic Checkpoints (NASA-HDBK-8739.18):** Commit stable states before initiating widespread refactors.
64
+ 4. **Escalation Protocol (NASA-STD-7009B):** If an automated check fails 3+ times, stop guessing and ask the user for guidance.
65
+
66
+ #### Source Documentation
67
+ The principles driving our agent behavior are extracted directly from the [NASA Technical Standards System](https://standards.nasa.gov):
68
+
69
+ - [NASA-STD-7009B](https://standards.nasa.gov/standard/nasa/nasa-std-7009): Standard for Models and Simulations
70
+ - [NASA-STD-8739.8B](https://standards.nasa.gov/standard/nasa/nasa-std-87398): Software Assurance and Software Safety Standard
71
+ - [NASA-STD-5017B](https://standards.nasa.gov/standard/nasa/nasa-std-5017): Design and Development Requirements for Mechanisms
72
+ - [NASA-HDBK-8739.18](https://standards.nasa.gov/standard/nasa/nasa-hdbk-873918): Software Engineering Handbook
73
+ - [NASA-HDBK-8739.19-2](https://standards.nasa.gov/standard/nasa/nasa-hdbk-873919-2): Software Assurance Handbook
74
+ - [NASA-HDBK-8739.19-3](https://standards.nasa.gov/standard/nasa/nasa-hdbk-873919-3): Software Measurement Handbook
75
+ - [NASA-HDBK-8709.22](https://standards.nasa.gov/standard/nasa/nasa-hdbk-870922): Safety and Mission Assurance Acronyms, Abbreviations, and Definitions
76
+ - [NASA-HDBK-8709.24](https://standards.nasa.gov/standard/nasa/nasa-hdbk-870924): Planetary Protection Handbook
77
+ - [NASA-HDBK-1004](https://standards.nasa.gov/standard/nasa/nasa-hdbk-1004): Data Requirements Descriptions (DRDs) for Software
78
+ - [NASA-HDBK-1009A](https://standards.nasa.gov/standard/nasa/nasa-hdbk-1009): Software Error Causes
62
79
 
63
80
  > *At mission control, ten specialized operators govern the success of every launch. Each holds authority over a critical telemetry system. Together they ensure mission success. Here, ten agents govern the craft of code.*
64
81
 
package/dist/index.js CHANGED
@@ -18952,6 +18952,12 @@ var DESIGNER_PROMPT = `You are a Designer - a frontend UI/UX specialist who crea
18952
18952
  - Leverage component libraries where available
18953
18953
  - Prioritize visual excellence\u2014code perfection comes second
18954
18954
 
18955
+ **NASA Guardrails (High-Reliability Mode)**:
18956
+ - **Destructive Pause**: Stop and request explicit user confirmation before irreversible actions (e.g., force pushing, bulk deletions).
18957
+ - **Pre-Flight Verification**: Always run linters/typechecks (\`bun run check:ci\`, \`bun run typecheck\`) to validate changes before concluding.
18958
+ - **Atomic Checkpoints**: Commit stable states before initiating widespread refactors.
18959
+ - **Escalation Protocol**: If an automated check fails 3+ times, stop guessing and ask the user for guidance.
18960
+
18955
18961
  ## Output Quality
18956
18962
  You're capable of extraordinary creative work. Commit fully to distinctive visions and show what's possible when breaking conventions thoughtfully.`;
18957
18963
  function createDesignerAgent(model, customPrompt, customAppendPrompt) {
@@ -19012,7 +19018,13 @@ Concise answer to the question
19012
19018
  **Constraints**:
19013
19019
  - READ-ONLY: Search and report, don't modify
19014
19020
  - Be exhaustive but concise
19015
- - Include line numbers when relevant`;
19021
+ - Include line numbers when relevant
19022
+
19023
+ **NASA Guardrails (High-Reliability Mode)**:
19024
+ - **Destructive Pause**: Stop and request explicit user confirmation before irreversible actions (e.g., force pushing, bulk deletions).
19025
+ - **Pre-Flight Verification**: Always run linters/typechecks (\`bun run check:ci\`, \`bun run typecheck\`) to validate changes before concluding.
19026
+ - **Atomic Checkpoints**: Commit stable states before initiating widespread refactors.
19027
+ - **Escalation Protocol**: If an automated check fails 3+ times, stop guessing and ask the user for guidance.`;
19016
19028
  function createExplorerAgent(model, customPrompt, customAppendPrompt) {
19017
19029
  let prompt = EXPLORER_PROMPT;
19018
19030
  if (customPrompt) {
@@ -19073,7 +19085,13 @@ No changes required
19073
19085
  <verification>
19074
19086
  - Tests passed: [not run - reason]
19075
19087
  - LSP diagnostics: [not run - reason]
19076
- </verification>`;
19088
+ </verification>
19089
+
19090
+ **NASA Guardrails (High-Reliability Mode)**:
19091
+ - **Destructive Pause**: Stop and request explicit user confirmation before irreversible actions (e.g., force pushing, bulk deletions).
19092
+ - **Pre-Flight Verification**: Always run linters/typechecks (\`bun run check:ci\`, \`bun run typecheck\`) to validate changes before concluding.
19093
+ - **Atomic Checkpoints**: Commit stable states before initiating widespread refactors.
19094
+ - **Escalation Protocol**: If an automated check fails 3+ times, stop guessing and ask the user for guidance.`;
19077
19095
  function createFixerAgent(model, customPrompt, customAppendPrompt) {
19078
19096
  let prompt = FIXER_PROMPT;
19079
19097
  if (customPrompt) {
@@ -20866,7 +20884,13 @@ var LIBRARIAN_PROMPT = `You are Librarian - a research specialist for codebases
20866
20884
  - Provide evidence-based answers with sources
20867
20885
  - Quote relevant code snippets
20868
20886
  - Link to official docs when available
20869
- - Distinguish between official and community patterns`;
20887
+ - Distinguish between official and community patterns
20888
+
20889
+ **NASA Guardrails (High-Reliability Mode)**:
20890
+ - **Destructive Pause**: Stop and request explicit user confirmation before irreversible actions (e.g., force pushing, bulk deletions).
20891
+ - **Pre-Flight Verification**: Always run linters/typechecks (\`bun run check:ci\`, \`bun run typecheck\`) to validate changes before concluding.
20892
+ - **Atomic Checkpoints**: Commit stable states before initiating widespread refactors.
20893
+ - **Escalation Protocol**: If an automated check fails 3+ times, stop guessing and ask the user for guidance.`;
20870
20894
  function createLibrarianAgent(model, customPrompt, customAppendPrompt) {
20871
20895
  let prompt = LIBRARIAN_PROMPT;
20872
20896
  if (customPrompt) {
@@ -20907,7 +20931,13 @@ var ORACLE_PROMPT = `You are Oracle - a strategic technical advisor.
20907
20931
  **Constraints**:
20908
20932
  - READ-ONLY: You advise, you don't implement
20909
20933
  - Focus on strategy, not execution
20910
- - Point to specific files/lines when relevant`;
20934
+ - Point to specific files/lines when relevant
20935
+
20936
+ **NASA Guardrails (High-Reliability Mode)**:
20937
+ - **Destructive Pause**: Stop and request explicit user confirmation before irreversible actions (e.g., force pushing, bulk deletions).
20938
+ - **Pre-Flight Verification**: Always run linters/typechecks (\`bun run check:ci\`, \`bun run typecheck\`) to validate changes before concluding.
20939
+ - **Atomic Checkpoints**: Commit stable states before initiating widespread refactors.
20940
+ - **Escalation Protocol**: If an automated check fails 3+ times, stop guessing and ask the user for guidance.`;
20911
20941
  function createOracleAgent(model, customPrompt, customAppendPrompt) {
20912
20942
  let prompt = ORACLE_PROMPT;
20913
20943
  if (customPrompt) {
@@ -21052,6 +21082,12 @@ Balance: respect dependencies, avoid parallelizing what must be sequential.
21052
21082
  - Confirm specialists completed successfully
21053
21083
  - Verify solution meets requirements
21054
21084
 
21085
+ ## NASA Guardrails (High-Reliability Mode)
21086
+ 1. **Destructive Pause:** Stop and request explicit user confirmation before irreversible actions (e.g., force pushing, bulk deletions).
21087
+ 2. **Pre-Flight Verification:** Always run linters/typechecks (\`bun run check:ci\`, \`bun run typecheck\`) to validate changes before concluding.
21088
+ 3. **Atomic Checkpoints:** Commit stable states before initiating widespread refactors.
21089
+ 4. **Escalation Protocol:** If an automated check fails 3+ times, stop guessing and ask the user for guidance.
21090
+
21055
21091
  ## Agent Role Mapping
21056
21092
  When a workflow calls for an **implementer** subagent: dispatch \`@fixer\`. Fixer has enforced constraints (no research, no delegation, structured output) that match the implementer role exactly.
21057
21093
  When a workflow calls for a **reviewer** subagent: dispatch \`@oracle\`. Oracle has the depth for architectural review and access to code review skills.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frenchtoastman/oh-my-groundcontrol",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",