cascade-ai 0.12.24 → 0.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -2
- package/dist/cli.cjs +828 -177
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +823 -172
- package/dist/cli.js.map +1 -1
- package/dist/desktop-core.cjs +1504 -893
- package/dist/index.cjs +779 -163
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +139 -0
- package/dist/index.d.ts +139 -0
- package/dist/index.js +756 -140
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -764,8 +764,19 @@ web/
|
|
|
764
764
|
| ✓ | T3 text-tool fallback (Ollama support) |
|
|
765
765
|
| ✓ | Peer communication visualization in dashboard |
|
|
766
766
|
| ✓ | Conversational fast-path (bypass T1 for simple prompts) |
|
|
767
|
-
|
|
|
768
|
-
|
|
|
767
|
+
| ✓ | Redaction layer — secrets/PII stripped from T3 output before it travels upstream |
|
|
768
|
+
| ✓ | Per-path privacy tiers (`privacy.paths` — force local models + withhold output for sensitive folders) |
|
|
769
|
+
| ✓ | Tamper-evident audit log (encrypted + hash-chained; `/audit`, `GET /api/audit/verify`) |
|
|
770
|
+
| ✓ | Independent T2-critic reflection loop (`reflection.enabled`) |
|
|
771
|
+
| ✓ | Live steering — `/steer` / desktop Steer bar injects corrections into running workers |
|
|
772
|
+
| ✓ | Session rollback button (desktop) + `/rollback` (CLI) |
|
|
773
|
+
| ✓ | Cost-per-feature attribution (`costByFeature` in results, CLI cost panel, desktop chat) |
|
|
774
|
+
| ✓ | Project world state (encrypted local log feeding T1 planning) |
|
|
775
|
+
| 🔜 | VSCode extension (`cascade-vscode`) — see [docs/ROADMAP.md](docs/ROADMAP.md) |
|
|
776
|
+
| 🔜 | JetBrains extension (`cascade-jetbrains`) — see [docs/ROADMAP.md](docs/ROADMAP.md) |
|
|
777
|
+
| 🔜 | WASM/isolate sandboxing for tool execution — see [docs/ROADMAP.md](docs/ROADMAP.md) |
|
|
778
|
+
| 🔜 | Project knowledge graph (world-state v2) — see [docs/ROADMAP.md](docs/ROADMAP.md) |
|
|
779
|
+
| 🔜 | Multi-plan branching (T1 proposes N plans) — see [docs/ROADMAP.md](docs/ROADMAP.md) |
|
|
769
780
|
| 🔜 | Cascade Cloud (hosted dashboard) |
|
|
770
781
|
| 🔜 | Plugin marketplace |
|
|
771
782
|
| 🔜 | Voice input (STT) |
|