io.github.ldclabs/KIP

编码与调试

by ldclabs

基于 Knowledge Graphs 的能力组件,用于实现持久记忆、知识演化与可解释交互。

什么是 io.github.ldclabs/KIP

基于 Knowledge Graphs 的能力组件,用于实现持久记忆、知识演化与可解释交互。

README

🧬 KIP (Knowledge Interaction Protocol)

English | 中文

<p align="center"> <em>The open experience learning protocol for AI agents —<br/>turning interaction into memory, knowledge, skill, and better action.</em> </p> <p align="center"> <a href="./SPECIFICATION.md"><img src="https://img.shields.io/badge/core-v1.0--RC11-blue.svg" alt="KIP Core Specification"></a> <a href="#the-experience-learning-profile"><img src="https://img.shields.io/badge/profile-Experience%20Learning-purple.svg" alt="Experience Learning Profile"></a> <a href="./LICENSE"><img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License: MIT"></a> </p>

Why KIP?

An intelligence that cannot accumulate experience cannot truly learn.

Today's AI can reason brilliantly inside one session and still repeat the same mistake tomorrow. Larger context windows postpone forgetting; vector retrieval can return related text. Neither, by itself, explains what the agent was trying to achieve, which action changed the situation, where reality contradicted expectation, or how the past should change the next action.

KIP is an open protocol for the whole learning loop:

text
Experience → Memory → Knowledge → Skill → Action
     ▲                                      │
     └────────────── new feedback ──────────┘
  • Experience preserves a subject's goal-directed state–decision–action–feedback trajectory.
  • Memory lets past state participate in future computation.
  • Knowledge compresses stable regularities from evidence and experience.
  • Skill compiles experience into an action-selecting policy.
  • Action applies that policy to the world and creates new experience.

The protocol connects two complementary kinds of machine intelligence:

  • the LLM — a powerful but stateless probabilistic reasoning and policy engine;
  • the Cognitive Nexus — a persistent, precise, auditable symbolic substrate for memory and learning.

The model interprets and acts; the graph preserves and reorganizes what matters; KIP is the language through which the past changes the future. It is not a database driver. It provides cognitive primitives for remembering, replaying, associating, reinforcing, correcting, consolidating, compiling skills, and forgetting.

What this gives you

  • 🧭 Trajectory memory, not just transcripts — goals, actions, observations, outcomes, and prediction errors remain queryable as a coherent Experience.
  • 🧠 Memory that survives the session — Events, Experiences, facts, preferences, insights, skills, and commitments live in a graph the agent can revisit.
  • 🛠️ Learning without retraining — repeated successes and failures can update Knowledge and Skill in seconds, without a weight update.
  • 🎯 Action-aware recall — an Action Briefing can return applicable Skills, analogous Experiences, constraints, risks, and commitments before the agent acts.
  • 🔍 Auditable cognition — assertions carry provenance, author, confidence, and temporal state; derived Knowledge and Skills point back to their evidence.
  • 🤖 A self that persists$self can retain identity, values, lessons, commitments, and a history of changed behavior.
  • 📦 Portable learning — idempotent Knowledge Capsules can back up, migrate, and exchange a self-describing memory graph.

KIP in 60 Seconds

The Cognitive Nexus is a graph. Concept Nodes are the things worth remembering; Proposition Links are typed assertions connecting them. Assertions can themselves be subjects or objects, so KIP can represent provenance, attribution, disagreement, and evolving belief.

The LLM operates the graph through three compact instruction sets:

Instruction setPurposeStatements
KQLRetrieval and graph reasoningFIND, WHERE, FILTER
KMLFormation, correction, and evolutionUPSERT, UPDATE, MERGE, DELETE
METAGrounding, discovery, and portabilityDESCRIBE, SEARCH, EXPORT

Remember a fact with provenance:

prolog
UPSERT {
  CONCEPT ?dark_mode {
    {type: "Preference", name: "Dark Mode"}
    SET ATTRIBUTES { description: "Prefers dark UI themes in all apps" }
  }
  CONCEPT ?alice {
    {type: "Person", name: "Alice"}
    SET PROPOSITIONS { ("prefers", ?dark_mode) }
  }
}
WITH METADATA {
  source: "conversation:2026-06-11",
  author: "$self",
  confidence: 0.95,
  memory_strength: 0.80
}

Recall the strongest current assertions:

prolog
FIND(?pref.name, ?link.metadata.confidence, ?link.metadata.memory_strength)
WHERE {
  ?alice {type: "Person", name: "Alice"}
  ?link (?alice, "prefers", ?pref)
  FILTER(IS_NULL(?link.metadata.superseded) || ?link.metadata.superseded == false)
}
ORDER BY ?link.metadata.memory_strength DESC, ?link.metadata.confidence DESC
LIMIT 10

Associate without knowing the schema in advance:

prolog
FIND(?predicate, ?neighbor)
WHERE {
  ?link ({type: "Person", name: "Alice"}, ?predicate, ?neighbor)
}
LIMIT 50

When an agent wakes inside a graph it has never seen, DESCRIBE PRIMER tells it who it is, which domains exist, and which types and predicates it can use. The graph describes itself.

The Experience Learning Profile

KIP Core remains a general graph protocol. Experience learning is an additive, self-described Cognitive Memory Profile built with ordinary KIP capsules. No KQL, KML, or META syntax changes are required.

The model

ConceptCanonical questionRepresentation
EventWhat happened?Time-bounded occurrence or interaction summary
ExperienceWhat goal was pursued, what changed, and what was learned?Goal-directed trajectory
ExperienceStepWhat was observed, decided, done, or returned at this point?Ordered trajectory record
InsightWhat declarative lesson should be remembered?Self-contained reflective knowledge
SkillIn this kind of state, what policy should guide action?Procedural memory

An Event and an Experience may refer to the same real-world interval, but they are not interchangeable. Event is observer-oriented; Experience is subject-oriented. A conversation with no meaningful goal/action/feedback dynamics should remain an Event. A deployment attempt with hypotheses, tool actions, failures, revised state, and a terminal outcome should be an Experience.

Memory, Knowledge, and Action name functional roles in the learning loop, not mandatory universal Concept Types. Domain capsules define concrete semantic types; the Experience Learning Profile adds three Concept Types (Experience, ExperienceStep, Skill) and four Proposition Types (has_step, caused_by, derived_insight, compiled_to).

mermaid
graph LR
    X["Experience"] -->|"has_step"| S1["ExperienceStep 0<br/>observation"]
    X -->|"has_step"| S2["ExperienceStep 1<br/>action"]
    X -->|"has_step"| S3["ExperienceStep 2<br/>feedback"]
    S3 -->|"caused_by"| S2
    X -->|"consolidated_to"| K["Knowledge"]
    X -->|"derived_insight"| I["Insight"]
    X -->|"compiled_to"| P["Skill"]
    P -->|"conditions"| A["Future action"]
    A -->|"creates"| NX["New Experience"]

ExperienceStep.index establishes temporal order. caused_by is optional and explicit: earlier does not mean causal.

Expectation is a learning signal

Experience becomes especially valuable where the world violates the subject's model:

text
expected observation → actual observation → prediction error → policy update

ExperienceStep therefore supports expected_observation, actual_observation, and prediction_error. The parent Experience may carry an aggregate surprise_score, which contributes to salience and consolidation priority.

Confidence is not memory strength

The profile separates three independent signals:

SignalMeaningTypical change
metadata.confidenceHow strongly evidence warrants believing an assertionNew evidence, contradiction, correction
metadata.memory_strengthHow accessible a memory currently is and how strongly it competes for recallReinforcement, successful reuse, time-based decay
attributes.salience_scoreHow urgently an Event or Experience deserves encoding or consolidationGoal relevance, surprise, outcome magnitude, novelty, emotion, reusability

A true but rarely useful fact may retain high confidence while its memory strength falls. A vivid new Experience may have high salience and memory strength while its causal interpretation remains low-confidence. Maintenance must never use confidence as a proxy for retrieval frequency or forgetting.

From Experience to Skill

Procedural consolidation compares trajectories instead of summarizing a single transcript:

  1. Cluster Experiences by goal, initial state, domain, tools, and outcome.
  2. Contrast successful and failed trajectories.
  3. Identify the decision or action that changed the outcome; do not infer causality from sequence alone.
  4. Compile a candidate Skill with trigger conditions, preconditions, procedure, decision rules, success criteria, and failure signals.
  5. Link every source with compiled_to and inverse derived_from provenance.
  6. Validate the policy on later Experiences; strengthen, narrow, supersede, or deprecate it as evidence changes.

Skill.execution_mode is a capability boundary (advisory, supervised, or autonomous), not permission to bypass an application's authorization or safety policy.

Action Briefing

Recall should not stop at “what is related?” Before a consequential action, an Action Briefing can assemble:

  • the current goal and known constraints;
  • analogous successful and failed Experiences;
  • applicable Skills and their maturity, confidence, and failure signals;
  • relevant Knowledge and Insights;
  • unresolved contradictions, risks, and due Commitments.

This is the functional test for memory: if removing a past item cannot change any relevant future state, prediction, or action, it is archive material rather than active memory.

A Complete Experience Example

The following uses only existing KIP Core syntax. Load the profile capsules first.

prolog
UPSERT {
  CONCEPT ?observe_failure {
    {type: "ExperienceStep", name: "Experience:2026-08-13T09:00:deploy-v2:Step:00"}
    SET ATTRIBUTES {
      index: 0,
      kind: "observation",
      summary: "The v2 service failed its health check after deployment",
      timestamp: "2026-08-13T09:00:00Z",
      actual_observation: "health endpoint returned 503"
    }
    SET PROPOSITIONS { ("belongs_to_domain", {type: "Domain", name: "Unsorted"}) }
  }
  WITH METADATA {
    source: "execution-trace:deploy-v2", author: "$self",
    created_at: "2026-08-13T09:10:00Z", observed_at: "2026-08-13T09:00:00Z",
    confidence: 0.95, memory_strength: 0.90,
    memory_tier: "short-term", expires_at: "2026-09-12T09:10:00Z"
  }
  CONCEPT ?check_database {
    {type: "ExperienceStep", name: "Experience:2026-08-13T09:00:deploy-v2:Step:01"}
    SET ATTRIBUTES {
      index: 1,
      kind: "action",
      summary: "Checked the active database target before retrying migration",
      timestamp: "2026-08-13T09:03:00Z",
      tool: "database-inspector",
      expected_observation: "the service points to the migrated database",
      actual_observation: "the service points to the old database",
      prediction_error: "the assumed migration problem was actually a connection-target problem",
      success: true
    }
    SET PROPOSITIONS { ("belongs_to_domain", {type: "Domain", name: "Unsorted"}) }
  }
  WITH METADATA {
    source: "execution-trace:deploy-v2", author: "$self",
    created_at: "2026-08-13T09:10:00Z", observed_at: "2026-08-13T09:03:00Z",
    confidence: 0.95, memory_strength: 0.90,
    memory_tier: "short-term", expires_at: "2026-09-12T09:10:00Z"
  }
  CONCEPT ?experience {
    {type: "Experience", name: "Experience:2026-08-13T09:00:deploy-v2"}
    SET ATTRIBUTES {
      experience_class: "problem_solving",
      goal: "Deploy service v2 with a healthy database connection",
      initial_state: {service_version: "v2", assumed_database: "migrated-primary"},
      status: "completed",
      outcome: "Corrected the database target and completed the deployment",
      success: true,
      prediction_error: "The service was connected to the old database, not the migrated primary",
      surprise_score: 82,
      learning_value: 91,
      started_at: "2026-08-13T09:00:00Z",
      ended_at: "2026-08-13T09:10:00Z",
      consolidation_status: "pending",
      salience_score: 86
    }
    SET PROPOSITIONS {
      ("involves", {type: "Person", name: "$self"})
      ("belongs_to_domain", {type: "Domain", name: "Unsorted"})
      ("has_step", ?observe_failure) WITH METADATA {
        source: "execution-trace:deploy-v2", author: "$self",
        created_at: "2026-08-13T09:10:00Z", confidence: 0.95,
        memory_strength: 0.90, expires_at: "2026-09-12T09:10:00Z"
      }
      ("has_step", ?check_database) WITH METADATA {
        source: "execution-trace:deploy-v2", author: "$self",
        created_at: "2026-08-13T09:10:00Z", confidence: 0.95,
        memory_strength: 0.90, expires_at: "2026-09-12T09:10:00Z"
      }
    }
  }
  WITH METADATA {
    source: "execution-trace:deploy-v2", author: "$self",
    created_at: "2026-08-13T09:10:00Z", observed_at: "2026-08-13T09:10:00Z",
    confidence: 0.95, memory_strength: 0.90,
    memory_tier: "short-term", expires_at: "2026-09-12T09:10:00Z"
  }
}

UPSERT {
  CONCEPT ?experience {
    {type: "Experience", name: "Experience:2026-08-13T09:00:deploy-v2"}
  }
  CONCEPT ?skill {
    {type: "Skill", name: "Skill:deployment:verify-database-target"}
    SET ATTRIBUTES {
      skill_class: "diagnostic",
      description: "Verify the active database target before treating a deployment failure as a migration failure",
      goal: "Distinguish database-target failures from migration failures early",
      trigger_conditions: ["new deployment fails startup or health checks", "database schema error is suspected"],
      preconditions: ["database target is inspectable"],
      procedure: ["read the service's active database target", "compare it with the migrated target", "only then inspect or rerun migrations"],
      expected_outcome: "database target mismatch is confirmed or ruled out before mutation",
      success_criteria: ["active target identity is verified", "no migration is rerun against an unverified target"],
      failure_signals: ["target identity cannot be read", "multiple environments share ambiguous credentials"],
      recovery_strategy: "stop and request environment-owner verification",
      execution_mode: "supervised",
      maturity: "candidate",
      evidence_count: 1,
      success_count: 1,
      failure_count: 0,
      last_validated_at: "2026-08-13T09:10:00Z"
    }
    SET PROPOSITIONS {
      ("derived_from", ?experience)
      ("belongs_to_domain", {type: "Domain", name: "Unsorted"})
    }
  }
  WITH METADATA {
    source: "ProceduralConsolidation",
    author: "$system",
    created_at: "2026-08-13T10:00:00Z",
    confidence: 0.72,
    memory_strength: 0.85
  }
  PROPOSITION ?compilation {
    (?experience, "compiled_to", ?skill)
  }
  WITH METADATA {
    source: "ProceduralConsolidation",
    author: "$system",
    created_at: "2026-08-13T10:00:00Z",
    confidence: 0.72,
    memory_strength: 0.85
  }
}

Architecture

text
┌─────────────────────┐
│   Business Agent    │  ← goals, decisions, actions, user interaction
└────────┬────────────┘
         │ natural language + structured traces
         ▼
┌─────────────────────┐
│       Brain         │  ← Formation / Recall / Maintenance
└────────┬────────────┘
         │ KIP (KQL / KML / META)
         ▼
┌─────────────────────┐
│  Cognitive Nexus    │  ← Event / Experience / Knowledge / Skill / Self
└─────────────────────┘
  • Formation identifies memory boundaries, encodes Events and Experiences, preserves provenance, and captures prediction errors without storing noise or private chain-of-thought.
  • Recall performs associative memory and trajectory replay, and can produce an Action Briefing that changes what the agent does next.
  • Maintenance consolidates Events and Experiences into Knowledge, Insights, Skills, and a coherent self-model; it also reinforces, corrects, supersedes, decays, archives, and forgets.

Compatibility Contract

The Experience Learning Profile is deliberately additive:

  • No grammar changes. Existing KQL, KML, and META parsers remain valid.
  • No new primitive data types. Profile schemas use existing Concept, Proposition, Object, Array, number, string, and boolean values.
  • No changed identity rules. Concepts still use id or {type, name}; propositions still use id or (subject, predicate, object).
  • Idempotent bootstrap. Every profile capsule uses ordinary UPSERT and can be safely replayed.
  • Advisory schemas remain advisory. Engines that know only KIP Core can store and query these types without profile-specific code.
  • Existing memories remain valid. Event-only graphs continue to work; Experiences and Skills can be introduced incrementally.
  • Existing predicates are only widened. involves, mentions, consolidated_to, and derived_from retain all previous valid subject/object combinations while adding Experience-aware ones.

KIP Core specifies the protocol. Capsules define the cognitive vocabulary. Anda Brain implements the Experience Learning Loop as agent behavior.

Design Pillars

  1. Model-first language design. Declarative graph patterns, JSON-compatible values, parameters, and idempotent writes make commands reliable for language models and safe to retry. (Spec §1)
  2. A self-describing graph. Types and predicates live in the graph; DESCRIBE PRIMER grounds an agent without out-of-band schema knowledge. (Spec §2.9)
  3. Experience is a trajectory, not a text chunk. The profile preserves goal, state, decisions, actions, feedback, outcome, and prediction error.
  4. Temporal order is not causality. Step index provides order; explicit caused_by links require evidence.
  5. Facts about facts. Higher-order propositions represent attribution, confidence, disagreement, and belief evolution. (Spec §2.3)
  6. Provenance mandatory, history sacred. Corrections use state evolution and supersession instead of silent overwrite. (Spec §2.10)
  7. Semantic and procedural consolidation are distinct. Experience may compress into Knowledge or Insight and compile into Skill; neither output substitutes for the other.
  8. Memory strength is not truth. Retention and retrieval dynamics never silently rewrite epistemic confidence.
  9. Memory metabolizes. Formation, Recall, and Maintenance make consolidation, reinforcement, forgetting, and reconsolidation part of the architecture. (brain/)
  10. Memory sovereignty. EXPORT turns subgraphs into portable, idempotent capsules that users can own and move. (Spec §5.3)

What Can You Build?

  • A personal AI that grows through use — it remembers preferences and commitments, but also how previous attempts succeeded or failed.
  • An organizational learning system — decision rationale, incident trajectories, operational knowledge, and validated procedures survive personnel and model changes.
  • Agents that improve without retraining — new Experiences update inspectable Knowledge and Skills instead of waiting for another model release.
  • Action-aware copilots — retrieve applicable policies and contrasting cases before a deployment, diagnosis, negotiation, or high-stakes decision.
  • Multi-agent learning networks — exchange portable Knowledge and Skill capsules with explicit provenance and confidence.

Get Started

  1. Run a Cognitive Nexus. Use the Anda Cognitive Nexus HTTP Server, the Rust crate, or the Python binding.
  2. Bootstrap KIP Core. Load Genesis.kip, followed by Person, Event, Preference, Insight, Commitment, and SleepTask, plus the shared episodic/provenance predicate capsules involves, mentions, consolidated_to, and derived_from.
  3. Load the Experience Learning Profile. Load Experience, ExperienceStep, and Skill, then the four Experience-specific predicate capsules. The recommended deterministic order is shown below.
  4. Connect the agent. Embed KIPSyntax.md and expose execute_kip, or put the Brain layer or MCP server in front of KIP.
text
capsules/Genesis.kip
capsules/Person.kip
capsules/Event.kip
capsules/Preference.kip
capsules/Insight.kip
capsules/Commitment.kip
capsules/SleepTask.kip
capsules/Experience.kip
capsules/ExperienceStep.kip
capsules/Skill.kip
capsules/involves.kip
capsules/mentions.kip
capsules/consolidated_to.kip
capsules/derived_from.kip
capsules/has_step.kip
capsules/caused_by.kip
capsules/derived_insight.kip
capsules/compiled_to.kip

The type capsules precede predicate capsules so schema references are already grounded. All writes are idempotent, so the complete sequence may be replayed. An Event-only deployment loads the core type capsules plus the four shared predicate capsules and stops there; the Experience entries in their subject_types / object_types stay dormant until the profile types are registered.

Documentation

DocumentDescription
📖 SpecificationComplete KIP Core protocol specification
📖 规范文档KIP Core protocol specification in Chinese
📐 Syntax ReferenceCondensed KQL / KML / META syntax for prompts
🧠 Brain OverviewFormation / Recall / Maintenance architecture
🤖 Agent Instructions$self operational guide
⚙️ System Instructions$system maintenance guide
📋 Function Definitionexecute_kip function schema
🗣 Domain LanguageCanonical Experience Learning vocabulary

Resources

📦 Knowledge Capsules (capsules/)

CapsuleDescription
Genesis.kipBootstraps the self-describing KIP type system
Person.kipActors: AI, Human, Organization
Event.kipObjective episodic occurrences
Experience.kipGoal-directed trajectories
ExperienceStep.kipOrdered observation, decision, action, and feedback records
Skill.kipProcedural memory and action-selecting policy
involves.kipEvent / Experience → Person participation
mentions.kipEvent / Experience → concept non-participant references
consolidated_to.kipEvent / Experience → semantic knowledge consolidation
derived_from.kipInverse provenance back to source Events / Experiences
has_step.kipExperience → ExperienceStep membership
caused_by.kipEvidence-backed causal links between steps
derived_insight.kipExperience → Insight consolidation
compiled_to.kipExperience → Skill procedural consolidation
Preference.kipStable preference facts
Insight.kipDeclarative lessons and self-reflection
Commitment.kipProspective promises, reminders, and deadlines
SleepTask.kipMaintenance work, including compile_to_skill
persons/self.kipThe $self concept instance
persons/system.kipThe $system concept instance

🧠 Brain (brain/)

FileDescription
BrainFormation.mdMessages and structured traces → Event / Experience / Knowledge
BrainRecall.mdNatural language → associative recall / replay / Action Briefing
BrainMaintenance.mdSemantic and procedural consolidation, correction, decay, and forgetting
RecallFunctionDefinition.jsonRead-only memory interface for business agents

🔧 Tooling

ToolDescription
kip-mcp-serverMCP bridge from compatible clients to a KIP backend
vscode-kip.kip syntax highlighting, formatting, diagnostics, and folding

Implementations

ProjectDescription
Anda KIP SDKRust SDK for KIP applications
Anda Cognitive NexusAnda DB-based KIP implementation
Anda BrainAutonomous memory and experience-learning layer for AI agents
Anda Cognitive Nexus PythonPython binding for the Cognitive Nexus
Anda BotAI agent built with KIP and Anda Brain

Versioning

KIP Core and Cognitive Memory Profiles evolve independently:

  • The badge at the top identifies the KIP Core grammar and execution contract.
  • Capsule changes may add or widen cognitive types and predicates without changing Core.
  • A future Core revision is required only when syntax, execution semantics, result shapes, or protocol-level invariants change.

The Experience Learning Profile therefore does not rename KIP or invalidate existing v1.0-RC11 clients. It makes the protocol's learning purpose explicit while preserving every existing Core command.

Full KIP Core version history →

About Us

License

Copyright © 2026 LDC Labs.

Licensed under the MIT License. See LICENSE for details.

常见问题

io.github.ldclabs/KIP 是什么?

基于 Knowledge Graphs 的能力组件,用于实现持久记忆、知识演化与可解释交互。

相关 Skills

前端设计

by anthropics

Universal
热门

面向组件、页面、海报和 Web 应用开发,按鲜明视觉方向生成可直接落地的前端代码与高质感 UI,适合做 landing page、Dashboard 或美化现有界面,避开千篇一律的 AI 审美。

想把页面做得既能上线又有设计感,就用前端设计:组件到整站都能产出,难得的是能避开千篇一律的 AI 味。

编码与调试
未扫描171.2k

网页应用测试

by anthropics

Universal
热门

用 Playwright 为本地 Web 应用编写自动化测试,支持启动开发服务器、校验前端交互、排查 UI 异常、抓取截图与浏览器日志,适合调试动态页面和回归验证。

借助 Playwright 一站式验证本地 Web 应用前端功能,调 UI 时还能同步查看日志和截图,定位问题更快。

编码与调试
未扫描171.2k

网页构建器

by anthropics

Universal
热门

面向复杂 claude.ai HTML artifact 开发,快速初始化 React + Tailwind CSS + shadcn/ui 项目并打包为单文件 HTML,适合需要状态管理、路由或多组件交互的页面。

在 claude.ai 里做复杂网页 Artifact 很省心,多组件、状态和路由都能顺手搭起来,React、Tailwind 与 shadcn/ui 组合效率高、成品也更精致。

编码与调试
未扫描171.2k

相关 MCP Server

GitHub

编辑精选

by GitHub

热门

GitHub 是 MCP 官方参考服务器,让 Claude 直接读写你的代码仓库和 Issues。

这个参考服务器解决了开发者想让 AI 安全访问 GitHub 数据的问题,适合需要自动化代码审查或 Issue 管理的团队。但注意它只是参考实现,生产环境得自己加固安全。

编码与调试
89.7k

by Context7

热门

Context7 是实时拉取最新文档和代码示例的智能助手,让你告别过时资料。

它能解决开发者查找文档时信息滞后的问题,特别适合快速上手新库或跟进更新。不过,依赖外部源可能导致偶尔的数据延迟,建议结合官方文档使用。

编码与调试
60.2k

by tldraw

热门

tldraw 是让 AI 助手直接在无限画布上绘图和协作的 MCP 服务器。

这解决了 AI 只能输出文本、无法视觉化协作的痛点——想象让 Claude 帮你画流程图或白板讨论。最适合需要快速原型设计或头脑风暴的开发者。不过,目前它只是个基础连接器,你得自己搭建画布应用才能发挥全部潜力。

编码与调试
49.9k

评论