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
6 changes: 6 additions & 0 deletions .codex/environments/environment.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# THIS IS AUTOGENERATED. DO NOT EDIT MANUALLY
version = 1
name = "codestory"

[setup]
script = "cargo check"
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Project Structure & Module Organization
- Rust workspace is defined in `Cargo.toml`; crates live under `crates/`.
- Runtime stack: `crates/codestory-server` (Axum API + SSE + static SPA hosting) and `codestory-ui` (Vite + React + TypeScript).
- Core crates: `codestory-core`, `codestory-events`, `codestory-storage`, `codestory-index`, `codestory-search`, `codestory-graph`, `codestory-app`, `codestory-api`, `codestory-project`, `codestory-cli`.
- Core crates: `codestory-core`, `codestory-events`, `codestory-storage`, `codestory-index`, `codestory-search`, `codestory-app`, `codestory-api`, `codestory-project`, `codestory-cli`.
- Runtime artifacts: `codestory.db`, `codestory_ui.json`; build outputs in `target/` and `codestory-ui/dist/`.

## Architecture Overview
Expand Down
128 changes: 4 additions & 124 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ members = [
"crates/codestory-storage",
"crates/codestory-index",
"crates/codestory-search",
"crates/codestory-graph",
"crates/codestory-server",
"crates/codestory-cli",
"crates/codestory-events",
Expand All @@ -23,7 +22,6 @@ codestory-app = { path = "crates/codestory-app" }
codestory-storage = { path = "crates/codestory-storage" }
codestory-index = { path = "crates/codestory-index" }
codestory-search = { path = "crates/codestory-search" }
codestory-graph = { path = "crates/codestory-graph" }
codestory-events = { path = "crates/codestory-events" }
codestory-project = { path = "crates/codestory-project" }
codestory-bench = { path = "crates/codestory-bench" }
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ cargo run -p codestory-server -- --types-only --types-out codestory-ui/src/gener
- `codestory-index`: tree-sitter + semantic resolution indexing pipeline
- `codestory-storage`: SQLite schema and query layer
- `codestory-search`: search primitives over indexed data
- `codestory-graph`: graph shaping/layout helpers
- `codestory-api`: API DTOs and identifiers shared with frontend
- `codestory-app`: headless orchestrator
- `codestory-server`: Axum API + SSE + optional static file serving
Expand Down
Loading