AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Semantica Knowledge Graph

skill-arasz-ai-badger-semantica-knowledge-graph · by Arasz

>-

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-arasz-ai-badger-semantica-knowledge-graph

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-arasz-ai-badger-semantica-knowledge-graph)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
17d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Semantica Knowledge Graph? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

semantica-knowledge-graph

Semantica is a session-scoped knowledge graph MCP server (MIT, v0.6.5+). Every MCP invocation shares one in-memory graph — entities, relationships, and decisions accumulate within a session but do not survive a process restart.

When NOT to Use

  • A one-off fact lookup — use memory_search (AiRaccoon) first.
  • No decision or extraction needed — skip graph ceremony.
  • Durable facts outliving the session — write to AiRaccoon (memory_write).

Workflows

1. Decision recording

  1. record_decision(category="...", scenario="...", reasoning="...", outcome="...", confidence=0.85)
  2. add_entity for key concepts
  3. add_relationship(source="...", target="...", relationship_type="...")
  4. Cite decision id in commits or PRs for traceability

2. Entity extraction

  • Option 2 (Agent-Guided — Primary): Use LLM reasoning to extract domain concepts and call add_entity + add_relationship. Zero extra dependencies, instantaneous, zero cold-start.
  • For Code Structures: Use code-review-graph MCP tools (semantic_search_nodes_tool, find_callers, find_dependents) for code symbol graphs.
  • Option 1 (Native Local ML): Optional extract_entities / extract_relations via PyTorch/HuggingFace (pip install torch transformers). Degrades if ML deps missing.
  • Verify with get_graph_summary().

3. Decision archaeology

  1. query_decisions(query="keyword") → find decisions
  2. get_causal_chain(decision_id="...") → trace ancestry
  3. find_precedents(scenario="...") → check prior patterns

4. Graph export & AiRaccoon persistence pattern

To prevent data loss from Semantica's ephemeral in-memory process:

  1. Export as a hook / procedure: Call export_graph(format="json") and save to .ai-raccoon/semantica-graph.json.
  2. Watch via AiRaccoon: Register memory_watch_add(project_id="...", path="/semantica-graph.json").
  3. Structural JSON Integration: AiRaccoon automatically ingests the JSON file, parses node/edge hierarchies and decision outcomes, and embeds them into AiRaccoon's persistent SQLite memory bank (memory.db).
  4. Cross-Session Retrieval: In future sessions, memory_search in AiRaccoon returns both textual decision rationale AND exact structural JSON graph relations.

Escalation by result

  • Graph emptyget_graph_summary returns zero nodes; record decision or entities first
  • No precedent → record decision now so it becomes a precedent for next time
  • Causal chain incomplete → add missing intermediate entities/relationships, re-query

AiRaccoon complementarity

  • AiRaccoon (memory_search): "what do we know?" — semantic recall over indexed docs
  • Semantica (query_decisions): "how are things connected?" — structured reasoning over graph
  • Durable facts → memory_write (AiRaccoon); ephemeral causal reasoning → Semantica

Gotchas

  • Session-scoped only: in-memory graph dies on process exit. No import_graph mechanism exists.
  • Extraction ML deps: extract_entities needs torch + transformers, not LLM API keys.
  • Parameter names: add_relationship uses source/target, not source_id/target_id.
  • Known issue: get_graph_analytics unavailable in 0.6.5 — use get_graph_summary.

Verification Checklist

  • [ ] get_graph_summary returns node/edge counts reflecting session activity
  • [ ] At least one decision recorded and findable via query_decisions
  • [ ] AiRaccoon memory_search and Semantica query_decisions return complementary results
  • [ ] export_graph produces valid JSON snapshot for AiRaccoon watch ingestion

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.