omega-anda-pathways

Integrates Anda/KIP chat pathways and ICP durability into Omega Loops Rust crates.

Updated Aug 19, 2026
One-click install
npx skills add https://github.com/swcstudiospace/aimeecodes --skill omega-anda-pathways-swcstudiospace
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: omega-anda-pathways
Source: https://github.com/swcstudiospace/aimeecodes/tree/main/.aimee/skills/omega-anda-pathways
Command: npx skills add https://github.com/swcstudiospace/aimeecodes --skill omega-anda-pathways-swcstudiospace

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Adding persistent, hash-chained conversation pathways and durable memory to the Omega Loops agent runtime requires careful crate design, config wiring, and orchestrator hooks; this Skill codifies that integration so Anda/KIP is added as memory and pathway durability without replacing the Omega orchestrator. ## Core Features & Use Cases - Crate architecture guidance: Defines the roles of omega_anda (domain types, traits, file/memory stores, SessionPathwayService, PathwayLogHook) and omega_anda_icp (local receipt eternal store, capsules, backend stubs) following Omega clean architecture. - Config and app wiring: Documents the [anda] section in omega_config, the omega_app::anda_pathway factory, and hook chaining on on_response/on_end, including schema regeneration via cargo test -p omega_config --test schema. - Pathway CLI and rollback: Covers omega conversation pathway <id> list|show|rollback with hash-chain verification, plus pitfalls like workspace exclude entries, derive_setters collisions, and the absence of any dTEE runtime. - Use Case: When asked to add conversation rollback or eternal chat logging to Omega, follow the workflow to create domain types, traits, backends, and hooks, then verify with the prescribed cargo test commands. ## Quick Start Ask the agent to wire Anda/KIP session pathways into Omega Loops by enabling the [anda] config section and registering the pathway hooks in omega_app.

Frequently Asked Questions about omega-anda-pathways

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I enable Anda pathways in Omega Loops?▼

Add an [anda] section to ~/.omega/.omega.toml with enabled = true, kip_enabled, nexus_url, and eternal settings. When enabled, omega_app chains PathwayLogHook onto the orchestrator's on_response and on_end handlers automatically.

How do I roll back a conversation to a checkpoint?▼

Run omega conversation pathway <id> rollback <seq>. The SessionPathwayService verifies the hash chain through the target sequence, truncates later checkpoints, appends a Rollback marker, and restores the conversation via the repository.

Does Anda provide a dTEE or confidential agent runtime in Omega?▼

No. There is no dTEE/TEE runtime in the Omega tree; greps of omega_anda and omega_anda_icp find no such API. Agent sandboxes use DevPod Docker via omega-loops-cli, and pod doctor must report dTEE as missing.

What is the difference between chat pathways and file undo in Omega?▼

Pathways snapshot Conversation objects for chat history durability and rollback, while file undo is handled separately by omega_snaps. Anda integration covers chat only and never replaces the snapshot-based workspace undo.

Why do my new omega_anda crates fail to build in the workspace?▼

The root Cargo.toml may still exclude scaffold crates; remove the exclude entry once real manifests exist so the packages join the workspace. Also confirm omega_app depends on both path crates and trust cargo test over partial lint output.