
Stratosphere Os
- Updated July 31, 2026
- PatN-git/Stratosphere-OS
stratosphere-os is a Claude Code skill in the Automation & Workflows category. StratosphereOS: a weightless 3-layer agentic OS. Ships lifecycle workflows, a first-party skill, on-demand external skills, and a one-command project installer.
Key points
- stratosphere-os
- Automation & Workflows
- AI-coding skill
Stratosphere Os by the numbers
- Data as of Aug 1, 2026 (Skillselion catalog sync)
/plugin marketplace add PatN-git/Stratosphere-OS/plugin install stratosphere-os@stratosphere-osAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | July 31, 2026 |
|---|---|
| Repository | PatN-git/Stratosphere-OS ↗ |
What it does
StratosphereOS: a weightless 3-layer agentic OS. Ships lifecycle workflows, a first-party skill, on-demand external skills, and a one-command project installer.
README.md
Stratosphere-OS

An agentic orchestration framework that equips AI coding assistants (Claude Code, Google Antigravity) with structured memory, automated TDD guardrails, and deterministic project lifecycles. Developed out of frustration with unstructured AI workflows and inspired by popular skill builders.
Table of Contents
- Why StratosphereOS?
- Workspace Directory Structure
- Lifecycle Commands Matrix
- Getting Started (Installation)
- Architecture & Governance
Why StratosphereOS?
Beyond Unstructured Code Generation
In modern AI software development, ad-hoc chat prompting quickly leads to architectural drift, subtle bugs, and unmaintainable technical debt. StratosphereOS addresses this by enforcing Human-in-the-Loop (HITL) architecture governance.
Developers act as Loop Engineers—interviewing the agent, stress-testing specifications, and establishing clear UI and logic contracts before any implementation begins. Once the human explicitly approves the requirements, small vertical slices are delegated to autonomous test-driven loops (micro-tdd) that execute independently until all compiler and test suite checks pass.
StratosphereOS structures your workspace into three cooperating layers:
- Layer 1: Workflows (Human Driven) — Interactive lifecycle stages (Discover, Design, Slice) ensuring alignment before code generation.
- Layer 2: Orchestration Brain — The agent router governing tool execution and strict precedence rules.
- Layer 3: Autonomous Execution — Self-correcting inner loops (like test suites and linters) running deterministically against local code.
Workspace Directory Structure
When initialized via /stratosphere-setup, StratosphereOS scaffolds durable project state into your repository:
├── AGENT.md / CLAUDE.md / GEMINI.md ← Core constitution and layer rules
├── .agents/ ← Orchestration engine (rules, workflows, skills)
├── .memory/ ← Authoritative project memory
│ ├── STATUS.md ← Active session health and build status
│ ├── BACKLOG_MAP.md ← Feature slices and issue tracking
│ ├── LEARNINGS.md ← Accumulated architectural traps and fixes
│ ├── GLOSSARY.md ← Project domain vocabulary
│ ├── ARCHITECTURE.md ← System structural invariants
│ ├── DATABASE_SCHEMA.md ← Living database definitions
│ └── DESIGN.md / DESIGN_RULES.md ← UI design tokens and structural contracts
└── docs/ ← Product Requirement Documents (PRDs) and research
Lifecycle Commands Matrix
StratosphereOS provides structured slash commands spanning the entire development lifecycle.
| Stage | Command | Purpose & Rationale | Reads | Produces |
|---|---|---|---|---|
| 0. Session Start | /0a_start-session |
Eliminates cold-start costs by restoring branch state and loading durable memory. | STATUS, .memory/* |
Synced session context |
| 1. Discovery | /1a_research/1b_concept-framing |
Investigates domain context and deconstructs fuzzy ideas into structured briefs. | .memory/* |
Discovery brief, glossary terms |
| 2. Design | /2a_write-prd/2b_interface-design |
Derives formal PRDs and UI contracts to prevent agent hallucinations and UI drift. | Discovery brief | PRD doc, UI/logic contracts |
| 3. Planning | /3a_version-planning/3b_create-issue/3c_sprint-planning |
Deconstructs PRDs into traceable vertical-slice issues sized for single context windows. | PRD, BACKLOG_MAP |
Release roadmap, sprint plan, vertical issues |
| 3d. Execution | /3d_implement-issue |
Runs autonomous micro-tdd: writes failing test, executes suite, writes code, refactors. |
Issue, ARCHITECTURE |
Passing unit tests, committed code |
| 4. Ship | /4a_verify-and-ship/4b_audit-architecture-drift |
Audits acceptance criteria against automated test coverage and audits structural drift. | Issue, tests, .memory/* |
Quality gap report, traceable PR |
| 0. Session Stop | /0b_stop-session/0c_handoff |
Lints project memory, updates status ground truth, and prepares clean session handoffs. | Session work | Updated STATUS.md, clean handoff |
Getting Started (Installation)
1. Direct Plugin Installation (Recommended)
Claude Code:
/plugin marketplace add PatN-git/Stratosphere-OS
/plugin install stratosphere-os@stratosphere-os
Google Antigravity:
git clone https://github.com/PatN-git/Stratosphere-OS.git
bash scripts/install-antigravity.sh --global
# Windows: powershell -ExecutionPolicy Bypass -File scripts/install-antigravity.ps1 --global
[!TIP] Zero-Click AI Installation Shortcut Want your agent to handle the installation and dependency checks automatically? Simply paste this prompt into your chat:
Install StratosphereOS from this repository: https://github.com/PatN-git/Stratosphere-OS
2. Instantiate Project Memory
After installing the plugin, restart your app or agent session, navigate to your target project repository, and run:
/stratosphere-setup
This interactive command bootstraps the .memory/ state layer, constitution files, and domain skills tailored to your project.
Architecture & Governance
Open Knowledge Format (OKF) Conformance
StratosphereOS conforms to the Open Knowledge Format (OKF) v0.1 Specification. The .memory/ and docs/ directories form a structured knowledge bundle. An interactive HTML graph visualizer can be generated anytime via python .agents/scripts/okf_view.py.
UI Stack & Design Tooling
By default, UI projects assume React + Tailwind CSS + shadcn/ui. Non-UI projects rely on clean interface contracts defined during /2b_interface-design. Google Stitch design integration is supported automatically when enabled in workspace settings.
Maintainer Notes: Single Source Build Pipeline
This repository is the single source of truth (src/) that compiles into both Claude Code and Google Antigravity plugin distributions (dist/).
python build/build.py