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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
[![CI](https://github.com/GrayCodeAI/across/workflows/CI/badge.svg)](https://github.com/GrayCodeAI/across/actions)
[![Version](https://img.shields.io/badge/version-0.0.1--alpha-orange)]()
[![Status](https://img.shields.io/badge/status-local%20-alpha-red)]()
[![Version](https://img.shields.io/badge/version-0.0.1-blue.svg)](https://github.com/GrayCodeAI/across/releases/tag/v0.0.1)
[![Status](https://img.shields.io/badge/status-0.0.1-blue)]()

</div>

Expand Down
13 changes: 13 additions & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Across Roadmap — 0.0.1

## 0.0.2 — Continuity hardening
- Linux/Windows qualification, SQLite backup/restore tests
- `ARCHITECTURE.md`, `USAGE.md`, `API.md` docs + `examples/brief-handoff.sh`
- `rho`/`rover` interop: checkpoint restore, brief→session mapping

## 0.1.0 — Provenance
- Semantic search over dossiers, cross-repo handoffs
- Live provider adapters beyond OpenCode

## 1.0 — Production
- Stable CLI, signed checkpoints, migration guarantees
12 changes: 12 additions & 0 deletions STATUS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Across implementation status — 0.0.1

Local-first, git-native engineering continuity system. Not production-ready.

| Area | Implemented | Remaining / not validated |
|---|---|---|
| Core | SQLite WAL, repos/sessions/checkpoints, post-commit hook, CLI `repo/session/checkpoint/brief/handoff/dossier` | Linux/Windows qualification, backup/restore hardening |
| Provenance | Commit/session linkage, verification basis `executed_by_across_local_runner` | Semantic graph import, external evidence attestation |
| Agents | OpenCode synthetic-tested adapter | 8/9 providers UNIMPLEMENTED — no LIVE_TESTED |
| Interop | Checkpoints belong to Across; Rover may request/consume/restore (see README) | `rho checkpoint` <-> `across checkpoint` mapping, `rover snapshots` naming map |

See `README.md` Boundary: Across vs Rover and `docs/agent-compatibility.md`.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
8 changes: 8 additions & 0 deletions docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Across Architecture

- **CLI** `bin/across` → `internal/` (Go)
- **Storage** SQLite WAL (`ACROSS_HOME` default `~/.local/share/across`)
- **Git** post-commit hook → auto-checkpoint, commit/session linkage
- **Concepts** Repo → Session → Checkpoint → Brief/Handoff/Dossier → Verify

Boundary: Rover owns task execution/orchestration/verification; Across owns engineering history/sessions/checkpoints/provenance (README 62-73).
Loading