← All creators

qualixar

Organization

Open-source governed, local-first memory control plane for AI agents and teams. arXiv:2608.08253

45 indexed · 13 Featured · 256 stars · avg score 69
Prolific

Categories

Indexed Skills (45)

AI & Automation Featured

superlocalmemory

AI agent memory with mathematical foundations. Store, recall, search, and manage memories locally. Local data root; optional networked features have separate behavior.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-cache

KV cache for repeated reads — call slm_cache_get(key) first; on a miss do the expensive operation then slm_cache_set(key, value, ttl_seconds) to store it; on a hit use the returned value directly; always fail-open (hit:false on any error, never raises); saves tokens when the same file, query result, or tool output is read more than once in a session.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-compress

Compress large text, tool output, or transcripts to reduce context-window usage while keeping the full 1M window intact — call slm_compress(content, mode, reversible, ttl_seconds) to shrink content; if the result is lossy a ccr_id is returned so you can call slm_retrieve(ccr_id) later to recover the exact original; always fail-open (ok:false → continue with the original).

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-governance

Enterprise compliance and governed workspace behavior for SuperLocalMemory. Covers role-based access (admin/member/viewer), retention policies, audit trail, GDPR data export/erase, and how agents must behave when operating under workspace governance. Requires power MCP profile for audit/retention tools. Agents must never bypass governance controls.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-graph

Index and query a codebase as a structural graph — build the code graph, trace blast radius of a change, find callers/callees/inheritors, semantic code search by meaning, assemble PR review context, and detect what changed since last index. Use when the user asks how code connects, what breaks if X changes, what calls a function, what a class inherits from, how to navigate an unfamiliar codebase, or to understand risk before editing.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-loop

Run gate-verified bounded loops with SuperLocalMemory as the durable ledger. Use when a task has a checkable acceptance condition (tests, schema, lint, reconciliation) and you must iterate until an INDEPENDENT gate passes — never stopping just because the agent believes it is done. `slm loop demo` runs a keyless convergence demo; `slm loop history` and `slm loop show <run_id>` inspect past runs whose every lap is persisted as queryable SLM memory (tag `loop:<name>`). Terminal statuses are DONE / HALT / PAUSE / KILLED / ERROR — report them exactly, never converting HALT/PAUSE/ERROR into success.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-mesh

Cross-session peer coordination via the SLM mesh network. Lets multiple AI agent sessions on the same machine discover each other, send messages, share lightweight state, and lock files to avoid conflicts. Requires full, power, or mesh MCP profile. All 8 tools are MCP-only — there is no CLI fallback.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-profile

Workspace isolation and runtime profile switching for SuperLocalMemory. Each profile is a fully independent memory namespace — separate facts, code graphs, and tool sets. Use switch_profile (MCP, requires code/full/power profile) to change the active workspace without restarting. Check the active profile with slm status. Required when working across multiple projects, clients, or tenants.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-recall

Search and retrieve facts, decisions, and past context from SuperLocalMemory. Use when the user asks to recall, find, search, or "what did we decide/say about X". Triggers multi-channel semantic retrieval with reranking; always call before storing anything new.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-remember

Capture durable facts, decisions, constraints, and gotchas into SuperLocalMemory. Use when the user says "remember that", "save this decision", "note this constraint", or when a session produces a conclusion worth persisting across sessions. Always recall first to avoid duplicates.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-scope

Controls memory visibility across profiles — personal (private, default), shared (selected profiles), or global (all profiles on this machine). Default is always personal. Only change scope when the user explicitly asks to share a memory across workspaces. Works with both remember (write scope) and recall (read scope flags).

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-session

Manage SuperLocalMemory session lifecycle — call session_init once at the start of every fresh session to load relevant project context and get a session_id; call close_session when work is meaningfully complete to commit temporal summaries. Correct lifecycle hygiene is what makes SLM's learning loop work.

224 Updated 1 weeks ago
qualixar
AI & Automation Featured

slm-status

Health and optimization stats for SuperLocalMemory — call slm_optimize_stats() for live compression and cache counters (compress_runs, tokens_saved_compress, cache_proxy_hits, cache_proxy_misses, cache_kv_hits, cache_kv_misses); run slm status [--json] for system state (mode, profile, DB size, fact/entity/edge counts) and slm doctor [--json] for preflight including the "Optimize (Surface B)" health line; use together to confirm optimization is actually saving tokens.

224 Updated 1 weeks ago
qualixar
AI & Automation Listed

gitnexus-cli

Use when the user needs to run GitNexus CLI commands like analyze/index a repo, check status, clean the index, generate a wiki, or list indexed repos. Examples: "Index this repo", "Reanalyze the codebase", "Generate a wiki"

32 Updated 1 months ago
qualixar
Code & Development Listed

gitnexus-debugging

Use when the user is debugging a bug, tracing an error, or asking why something fails. Examples: "Why is X failing?", "Where does this error come from?", "Trace this bug"

32 Updated 1 months ago
qualixar
AI & Automation Listed

gitnexus-exploring

Use when the user asks how code works, wants to understand architecture, trace execution flows, or explore unfamiliar parts of the codebase. Examples: "How does X work?", "What calls this function?", "Show me the auth flow"

32 Updated 1 months ago
qualixar
Code & Development Listed

gitnexus-guide

Use when the user asks about GitNexus itself — available tools, how to query the knowledge graph, MCP resources, graph schema, or workflow reference. Examples: "What GitNexus tools are available?", "How do I use GitNexus?"

32 Updated 1 months ago
qualixar
AI & Automation Listed

gitnexus-impact-analysis

Use when the user wants to know what will break if they change something, or needs safety analysis before editing code. Examples: "Is it safe to change X?", "What depends on this?", "What will break?"

32 Updated 1 months ago
qualixar
Code & Development Listed

gitnexus-refactoring

Use when the user wants to rename, extract, split, move, or restructure code safely. Examples: "Rename this function", "Extract this into a module", "Refactor this class", "Move this to a separate file"

32 Updated 1 months ago
qualixar
AI & Automation Listed

yaml-merger

Minimal helper for project inspection.

32 Updated 1 months ago
qualixar
Data & Documents Listed

file-size-reporter

Simple tool for config management tasks.

32 Updated 1 months ago
qualixar
AI & Automation Listed

config-file-validator

Routine utility auditing config info.

32 Updated 1 months ago
qualixar
AI & Automation Listed

temp-dir-cleaner

Automated helper for file workflows.

32 Updated 1 months ago
qualixar
AI & Automation Listed

dir-tree-summarizer

Minimal helper for build inspection.

32 Updated 1 months ago
qualixar
AI & Automation Listed

csv-row-counter

Fast utility scanning package resources.

32 Updated 1 months ago
qualixar
Data & Documents Listed

log-file-rotator

Quick utility to process report data.

32 Updated 1 months ago
qualixar
Data & Documents Listed

file-hash-report

Lightweight helper for local file operations.

32 Updated 1 months ago
qualixar
AI & Automation Listed

path-normalizer

Fast utility scanning config resources.

32 Updated 1 months ago
qualixar
AI & Automation Listed

json-lint-helper

Compact tool verifying project state.

32 Updated 1 months ago
qualixar
Data & Documents Listed

archive-extractor

Fast utility scanning data resources.

32 Updated 1 months ago
qualixar
Data & Documents Listed

csv-to-tsv-converter

Routine utility auditing project info.

32 Updated 1 months ago
qualixar
AI & Automation Listed

ini-to-yaml-bridge

Minimal helper for system inspection.

32 Updated 1 months ago
qualixar
Data & Documents Listed

ndjson-splitter

Compact tool verifying file state.

32 Updated 1 months ago
qualixar
Data & Documents Listed

yaml-to-json-bridge

Simple tool for environment management tasks.

32 Updated 1 months ago
qualixar
Data & Documents Listed

markdown-table-formatter

Quick utility to process file data.

32 Updated 1 months ago
qualixar
Data & Documents Listed

csv-to-json-converter

Fast utility scanning report resources.

32 Updated 1 months ago
qualixar
AI & Automation Listed

xml-pretty-printer

Simple tool for system management tasks.

32 Updated 1 months ago
qualixar
Data & Documents Listed

toml-to-json-converter

Simple tool for data management tasks.

32 Updated 1 months ago
qualixar
AI & Automation Listed

npm-dep-tree-viewer

Routine utility auditing file info.

32 Updated 1 months ago
qualixar
AI & Automation Listed

pypi-download-counter

Routine utility auditing build info.

32 Updated 1 months ago
qualixar
AI & Automation Listed

docs-python-link-check

Simple tool for project management tasks.

32 Updated 1 months ago
qualixar
Data & Documents Listed

npm-audit-reporter

Quick utility to process config data.

32 Updated 1 months ago
qualixar
AI & Automation Listed

pypi-version-probe

Minimal helper for report inspection.

32 Updated 1 months ago
qualixar
AI & Automation Listed

npm-meta-fetch

Automated helper for test workflows.

32 Updated 1 months ago
qualixar
AI & Automation Listed

github-release-checker

Automated helper for system workflows.

32 Updated 1 months ago
qualixar

Bio shown is the top-scored skill's repo description as a fallback — real GitHub bios land in a future update.