Skip to content

Commit 1341420

Browse files
authored
Merge pull request #260 from CambrianTech/feature/cognition-optimization
Rust memory engine: 6-layer parallel recall with full ORM integration
2 parents c66f92f + e65e4c1 commit 1341420

File tree

76 files changed

+7663
-2715
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+7663
-2715
lines changed

src/debug/jtag/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@ Cargo.lock
4747
# Rust backup files
4848
**/*.rs.bk
4949
**/*.rs.bk.*
50+
.fastembed_cache/
772 KB
Loading

src/debug/jtag/generated-command-schemas.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"generated": "2026-01-30T05:40:56.725Z",
2+
"generated": "2026-01-30T23:05:41.816Z",
33
"version": "1.0.0",
44
"commands": [
55
{

src/debug/jtag/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/debug/jtag/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@continuum/jtag",
3-
"version": "1.0.7467",
3+
"version": "1.0.7478",
44
"description": "Global CLI debugging system for any Node.js project. Install once globally, use anywhere: npm install -g @continuum/jtag",
55
"config": {
66
"active_example": "widget-ui",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2+
3+
/**
4+
* Activity domain for channel routing.
5+
* Each domain has one ChannelQueue. Items route to their domain's queue.
6+
*/
7+
export type ActivityDomain = "AUDIO" | "CHAT" | "BACKGROUND";
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2+
3+
/**
4+
* IPC request to enqueue any item type. Discriminated by `item_type` field.
5+
*/
6+
export type ChannelEnqueueRequest = { "item_type": "voice", id: string, room_id: string, content: string, sender_id: string, sender_name: string, sender_type: string, voice_session_id: string, timestamp: number, priority: number, } | { "item_type": "chat", id: string, room_id: string, content: string, sender_id: string, sender_name: string, sender_type: string, mentions: boolean, timestamp: number, priority: number, } | { "item_type": "task", id: string, task_id: string, assignee_id: string, created_by: string, task_domain: string, task_type: string, context_id: string, description: string, priority: number, status: string, timestamp: number, due_date: bigint | null, estimated_duration: bigint | null, depends_on: Array<string>, blocked_by: Array<string>, };
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2+
import type { ChannelStatus } from "./ChannelStatus";
3+
4+
/**
5+
* Full channel registry status
6+
*/
7+
export type ChannelRegistryStatus = { channels: Array<ChannelStatus>, total_size: number, has_urgent_work: boolean, has_work: boolean, };
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2+
import type { ActivityDomain } from "./ActivityDomain";
3+
4+
/**
5+
* Per-channel status snapshot
6+
*/
7+
export type ChannelStatus = { domain: ActivityDomain, size: number, has_urgent: boolean, has_work: boolean, };
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2+
3+
/**
4+
* Context from a prior message consolidated into this chat item.
5+
*/
6+
export type ConsolidatedContext = { sender_id: string, sender_name: string, content: string, timestamp: bigint, };

0 commit comments

Comments
 (0)