falli'N
Structured Memory System
Twitter $falli'N
_
          
falli'N
Structured
Memory for
Autonomous Agents
// capabilities

Built for
Autonomous Work

Graph-Aware Context

Entity graphs power smart retrieval. Planning, incident, handoff — each context profile surfaces exactly what your agent needs.

Session Lifecycle

Wake, checkpoint, sleep. Structured session management ensures nothing is lost between runs. Resume from any point.

Task Primitives

Built-in task tracking, backlogs, projects, and kanban boards. Your agent manages work, not just memory.

Obsidian Integration

Canvas dashboards, graph themes, and bidirectional kanban sync. Visualize your vault directly in Obsidian.

Observation Pipeline

Raw transcripts become scored observations, automatically routed into structured memory. Importance-weighted, type-tagged.

Replay Engine

Ingest transcripts from Claude, ChatGPT, OpenCode, and OpenClaw. Every past conversation becomes searchable memory.

// documentation

Docs

Everything you need — from install to advanced integrations.

# Clone the repository # Initialize a new vault fallin init ~/memory --name my-brain # Bootstrap Obsidian integration fallin setup --theme neural --canvas # Start a session fallin wake # Store a decision fallin remember decision "Use PostgreSQL" --content "Chosen for JSONB and reliability" # Search your vault fallin search "postgresql" fallin vsearch "what did we decide about storage" # Checkpoint during heavy work fallin checkpoint --working-on "auth rollout" --focus "token refresh" # End session fallin sleep "finished auth plan" --next "implement migration"

Requires Node.js 18+.

Core

  • init Create or initialize a vault
  • setup Bootstrap Obsidian config
  • store Store a raw memory entry
  • remember Store a typed memory
  • search Full-text search
  • vsearch Vector / semantic search
  • list List vault entries
  • get Retrieve a specific entry
  • stats Vault statistics

Context & Memory

  • context Retrieve relevant context
  • inject Dynamic prompt injection
  • observe Run observation pipeline
  • reflect Generate weekly reflection
  • graph Explore entity graph
  • entities List tracked entities
  • link Create entity links
  • embed Generate embeddings

Session Management

  • wake Start a new session
  • sleep End session with summary
  • checkpoint Save progress mid-session
  • recover Recover interrupted session
  • handoff Transition between agents
  • status Current session status
  • recap Session recap

Work Management

  • task add Create a task
  • task list List tasks
  • backlog Manage backlog
  • blocked Show blocked items
  • project Manage projects
  • kanban sync Sync kanban board
  • canvas Generate dashboard

Vault Structure

vault/ ├── .fallin/ # Internal state & config ├── decisions/ # Key architectural choices ├── lessons/ # Insights & learnings ├── people/ # Contact & relationship data ├── projects/ # Active project tracking ├── handoffs/ # Session transition notes ├── inbox/ # Quick captures └── templates/ # Document templates

Ledger Architecture

ledger/ ├── raw/<source>/ # Raw transcript chunks ├── observations/YYYY/MM/DD.md # Scored daily observations ├── reflections/YYYY-WNN.md # Weekly reflections └── archive/observations/YYYY/MM/DD.md # Archived observations

Observation Format

# Each observation is scored for confidence (c) and importance (i) - [decision|c=0.9|i=0.8] Use PostgreSQL for primary datastore - [lesson|c=0.7|i=0.6] Batch inserts outperform individual writes by 12x - [fact|c=1.0|i=0.4] API rate limit is 1000 req/min # Types: decision, preference, fact, commitment, # milestone, lesson, relationship, project

Session Workflow

# 1. Start session — loads vault context fallin wake # 2. Checkpoint progress at any time fallin checkpoint --working-on "feature X" --focus "edge cases" # 3. Retrieve context before complex decisions fallin context "authentication" fallin inject "summarize what we know about auth tokens" # 4. End session — summarize and plan next steps fallin sleep "completed auth module" --next "write integration tests" # Recover from interrupted session fallin recover # Hand off to another agent fallin handoff --to agent-02 --context "continue from auth"

Context Profiles

ProfilePurposeUse Case
defaultBalanced retrievalGeneral tasks and queries
planningBroader strategic contextArchitecture decisions, roadmap
incidentRecent events and blockersDebugging, firefighting
handoffSession transition contextAgent-to-agent continuity
autoHook-selected profileAutomatic based on current task

Obsidian

Graph themes (neural, minimal), canvas dashboards, Bases views for tasks, bidirectional kanban sync. Run fallin setup --theme neural --canvas to bootstrap.

OpenClaw

First-class hook pack. Install with openclaw hooks install fallin then openclaw hooks enable fallin. Auto session lifecycle and context injection.

Tailscale + WebDAV

Serve vault over Tailscale for mobile sync. WebDAV at /webdav for Obsidian mobile. Run fallin tailscale-serve --vault ~/memory.

Replay Sources

# Ingest transcripts from multiple platforms fallin replay --source claude # Anthropic Claude fallin replay --source chatgpt # OpenAI ChatGPT fallin replay --source opencode # OpenCode sessions fallin replay --source openclaw # OpenClaw transcripts