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
2 changes: 0 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
# this file alone does not turn them on.
#
# Not covered here, deliberately:
# - packages/* pnpm-workspace.yaml declares `packages: ["."]`, so these
# are not installed workspace members and have no lockfile.
# - tests/blackboard-poc/requirements.txt proof-of-concept only.
# - github-actions would need version updates to be useful; under a
# security-only policy it would do almost nothing.
Expand Down
14 changes: 7 additions & 7 deletions docs/contributing/wiki/Architecture-Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,13 @@ User types message → SessionCreator / ChatPanel

## Key design decisions

| Decision | Rationale |
| ------------------- | --------------------------------------------------------------------------------------- |
| Tauri over Electron | ~10× lower memory footprint; Rust safety; no Node.js in the native layer |
| Jotai over Redux | Fine-grained atomic subscriptions avoid over-rendering large session lists |
| Zod RPC boundary | Catches schema drift between TS and Rust at runtime; errors surface early in dev |
| Per-agent parsers | Isolates each CLI agent's quirks; new agents added without touching shared code |
| AGPL-3.0 | Ensures hosted derivatives remain open; an OSS core is planned in `packages/orgii_core` |
| Decision | Rationale |
| ------------------- | ----------------------------------------------------------------------------------------------- |
| Tauri over Electron | ~10× lower memory footprint; Rust safety; no Node.js in the native layer |
| Jotai over Redux | Fine-grained atomic subscriptions avoid over-rendering large session lists |
| Zod RPC boundary | Catches schema drift between TS and Rust at runtime; errors surface early in dev |
| Per-agent parsers | Isolates each CLI agent's quirks; new agents added without touching shared code |
| AGPL-3.0 | Ensures hosted derivatives remain open, including any managed/hosted service built on this code |

---

Expand Down
27 changes: 0 additions & 27 deletions packages/README.md

This file was deleted.

19 changes: 0 additions & 19 deletions packages/orgii_core/README.md

This file was deleted.

8 changes: 0 additions & 8 deletions packages/orgii_core/package.json

This file was deleted.

Empty file.
Empty file removed packages/orgii_core/src/.gitkeep
Empty file.
21 changes: 0 additions & 21 deletions packages/orgii_marketplace/README.md

This file was deleted.

8 changes: 0 additions & 8 deletions packages/orgii_marketplace/package.json

This file was deleted.

Empty file.
Empty file.
18 changes: 0 additions & 18 deletions packages/ui/package.json

This file was deleted.

65 changes: 0 additions & 65 deletions packages/ui/src/ChatFontStyles/index.ts

This file was deleted.

142 changes: 0 additions & 142 deletions packages/ui/src/ChatFontStyles/styles.scss

This file was deleted.

1 change: 0 additions & 1 deletion scripts/ci/detect-rust-changes.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const fs = require("node:fs");
const FRONTEND_ONLY_PREFIXES = Object.freeze([
"assets/",
"build/",
"packages/",
"public/",
"src/",
"tests/",
Expand Down
1 change: 0 additions & 1 deletion scripts/ci/detect-rust-changes.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ test("pure frontend source changes skip Rust", () => {
"src/components/Button.tsx",
"src/store/session.ts",
"public/index.html",
"packages/ui/src/styles.scss",
]),
false
);
Expand Down
Loading