Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .changeset/framework-preflight.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/framework-serve-gate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/framework-session-link.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/localrunner-adopt.md

This file was deleted.

7 changes: 7 additions & 0 deletions examples/autopilot-quickstart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @gemstack/example-autopilot-quickstart

## 0.0.4

### Patch Changes

- Updated dependencies [d72accd]
- @gemstack/ai-autopilot@0.5.0

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/autopilot-quickstart/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gemstack/example-autopilot-quickstart",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"description": "Runnable end-to-end quickstart for @gemstack/ai-autopilot: personas + Supervisor + runner + surfaces composed into one build-a-feature flow, offline via AiFake.",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions examples/bootstrap-quickstart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @gemstack/example-bootstrap-quickstart

## 0.0.4

### Patch Changes

- Updated dependencies [d72accd]
- @gemstack/ai-autopilot@0.5.0

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/bootstrap-quickstart/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gemstack/example-bootstrap-quickstart",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"description": "Runnable capstone for @gemstack/ai-autopilot: preset detection + Bootstrap (scope → architect → build → full-fledged loop → deploy) + scale mode, streamed over surfaces, offline via AiFake + FakeRunner.",
"type": "module",
Expand Down
12 changes: 12 additions & 0 deletions packages/ai-autopilot/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @gemstack/ai-autopilot

## 0.5.0

### Minor Changes

- d72accd: feat(runner): `LocalRunner.adopt(dir)` binds an existing directory as the workspace

Adopt a directory that already exists instead of booting a fresh temp one. The
session reads, execs, starts, and previews inside it exactly like a booted
session, but `dispose` does not delete it (the directory belongs to the caller).
Fills a real gap in the runner seam: running or verifying code that another tool
already wrote to disk.

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ai-autopilot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gemstack/ai-autopilot",
"version": "0.4.0",
"version": "0.5.0",
"description": "Orchestration for @gemstack/ai-sdk agents: a Supervisor that plans, dispatches subagents (bounded concurrency + budget guardrails), and synthesizes the result.",
"keywords": [
"ai",
Expand Down
27 changes: 27 additions & 0 deletions packages/framework/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @gemstack/framework

## 0.2.0

### Minor Changes

- d31a260: feat: preflight checks + `framework doctor`

A live run now checks its prerequisites first and fails early with a clear fix
("`claude` not found - install Claude Code ...") instead of a cryptic mid-run
spawn error. Adds a `framework doctor` command that reports the checks, and a
`--skip-preflight` escape hatch. `--fake` never runs preflight (it needs no CLI).

- d72accd: feat: `--serve` gates the loop on the app actually running

When `--serve <cmd>` is set, the production-grade checklist no longer trusts only
the agent's review: it adopts the agent's workspace, installs/builds/starts the
app, and fetches it. A boot failure or a 5xx becomes a blocker the loop hands
back to the agent to fix, so "production-grade" means it really serves. Adds
`--serve-install`, `--serve-build`, `--serve-port`, `--serve-path`, the
`serve` option on `runFramework`, and streams serve progress to the dashboard.

- c4545c2: Surface the live agent session on the dashboard. The wrapped agent's real session id is captured once the first turn returns and streamed as a new `session-update` event, so the dashboard header shows the live session (and the terminal prints it). `--session-link` now accepts a `{sessionId}` template that resolves to a real URL once the id is known; a literal URL still shows immediately.

### Patch Changes

- Updated dependencies [d72accd]
- @gemstack/ai-autopilot@0.5.0

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gemstack/framework",
"version": "0.1.0",
"version": "0.2.0",
"description": "The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.",
"keywords": [
"ai",
Expand Down
Loading