[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-93296":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":14,"subscribersCount":14,"size":14,"stars1d":14,"stars7d":15,"stars30d":15,"stars90d":14,"forks30d":14,"starsTrendScore":14,"compositeScore":16,"rankGlobal":9,"rankLanguage":9,"license":17,"archived":18,"fork":18,"defaultBranch":19,"hasWiki":18,"hasPages":18,"topics":20,"createdAt":9,"pushedAt":9,"updatedAt":21,"readmeContent":22,"aiSummary":23,"trendingCount":14,"starSnapshotCount":14,"syncStatus":24,"lastSyncTime":25,"discoverSource":26},93296,"kitforai","kitforai\u002Fkitforai","Kit for AI developer hub — official SDK, Claude Code plugin, MCP setup, and llms.txt.","https:\u002F\u002Fkitforai.com",null,"TypeScript",128,6,110,0,19,53.94,"MIT License",false,"main",[],"2026-07-22 04:02:08","# Kit for AI — Developer Hub\n\n[![CI](https:\u002F\u002Fgithub.com\u002Fkitforai\u002Fkitforai\u002Factions\u002Fworkflows\u002Fci.yml\u002Fbadge.svg)](https:\u002F\u002Fgithub.com\u002Fkitforai\u002Fkitforai\u002Factions\u002Fworkflows\u002Fci.yml)\n\nPublic developer resources for [Kit for AI](https:\u002F\u002Fkitforai.com): persistent\nmemory for AI agents — `remember`\u002F`recall`, knowledge-base RAG search, cited\nchat, and document→Markdown\u002FJSON conversion, over **MCP** and **REST** with one\nAPI key.\n\nGet an API key at \u003Chttps:\u002F\u002Fkitforai.com\u002Fapp\u002Fsettings> (starts with `kfa_`).\n\n## What's inside\n\n| Path | What it is |\n|------|-----------|\n| [`packages\u002Fsdk`](packages\u002Fsdk) | `@kitforai\u002Fsdk` — the official typed TypeScript\u002FJavaScript REST client (convert, knowledge bases). Zero-dependency, ESM + CJS. |\n| [`plugins\u002Fkit-for-ai`](plugins\u002Fkit-for-ai) | The Claude Code plugin — wires the Kit for AI MCP tools + a usage skill into Claude with one command. |\n| [`.claude-plugin\u002Fmarketplace.json`](.claude-plugin\u002Fmarketplace.json) | Makes this repo an installable plugin marketplace (`kitforai`). |\n| [`.claude\u002F`](.claude) | A `using-kit-for-ai` skill — clone this repo and Claude Code knows when to remember\u002Frecall and use the tools. |\n| [`llms.txt`](llms.txt) | Machine-readable index for agents (mirrors \u003Chttps:\u002F\u002Fkitforai.com\u002Fllms.txt>). |\n| [`examples\u002F`](examples) | Runnable SDK and MCP setup examples. |\n\n## Use the SDK\n\n```bash\nnpm install @kitforai\u002Fsdk\n```\n\n```ts\nimport { KitForAI } from \"@kitforai\u002Fsdk\";\n\nconst kit = new KitForAI({ apiKey: process.env.KITFORAI_API_KEY! });\n\n\u002F\u002F Convert a URL to structured JSON\nconst res = await kit.convertUrl(\"https:\u002F\u002Fexample.com\u002Freport.pdf\", { outputFormat: \"json\" });\n```\n\nSee [`examples\u002Fsdk-quickstart.ts`](examples\u002Fsdk-quickstart.ts) to get started, or\n[`examples\u002Fsdk-all-methods.ts`](examples\u002Fsdk-all-methods.ts) for a runnable tour of\n**every** SDK method — conversions, batch, files, the full knowledge-base lifecycle\n(search, read, versioned write\u002Fappend\u002Fedit\u002Frevert), and API keys.\n\n## Use the Claude plugin\n\n```\n\u002Fplugin marketplace add kitforai\u002Fkitforai\n\u002Fplugin install kit-for-ai@kitforai\n```\n\n```bash\nexport KITFORAI_API_KEY=kfa_...\n```\n\n> This repo is the canonical home for the plugin, the SDK, and MCP setup. The\n> plugin is submitted to Anthropic's Claude plugin directory from here.\n\n## Connect any MCP agent\n\nPoint any MCP client at the hosted server — see [`examples\u002Fmcp-setup.md`](examples\u002Fmcp-setup.md):\n\n```json\n{\n  \"kit-for-ai\": {\n    \"type\": \"http\",\n    \"url\": \"https:\u002F\u002Fkitforai.com\u002Fapi\u002Fmcp\",\n    \"headers\": { \"x-api-key\": \"${KITFORAI_API_KEY}\" }\n  }\n}\n```\n\nAgents can self-configure from \u003Chttps:\u002F\u002Fkitforai.com\u002Fllm-setup>.\n\n## Links\n\n- Docs: \u003Chttps:\u002F\u002Fkitforai.com\u002Fdocs> · API reference: \u003Chttps:\u002F\u002Fkitforai.com\u002Freference>\n- MCP endpoint: `https:\u002F\u002Fkitforai.com\u002Fapi\u002Fmcp` · REST base: `https:\u002F\u002Fkitforai.com\u002Fapi\u002Fv1`\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","Kit for AI 是一个面向 AI 开发者的工具集中心，提供持久化记忆、知识库 RAG 检索、带引用的对话、文档结构化转换（PDF\u002FURL → Markdown\u002FJSON）等能力。核心包含官方 TypeScript SDK（零依赖、支持 ESM\u002FCJS）、Claude Code 插件（集成 MCP 工具与使用技能）、标准化 MCP 服务接入点及机器可读的 LLM 元数据索引（llms.txt）。所有功能通过统一 API 密钥（kfa_ 前缀）经 REST 或 MCP 协议调用。适用于构建具备长期记忆与知识增强能力的 AI 代理、智能助手或 RAG 应用开发场景。",2,"2026-07-15 02:30:11","CREATED_QUERY"]