{"id":50351144,"url":"https://github.com/kxsystems/kx-skills","last_synced_at":"2026-05-29T21:01:36.125Z","repository":{"id":360182927,"uuid":"1244742159","full_name":"KxSystems/kx-skills","owner":"KxSystems","description":"Public repository for KX AI Plugins and Skills.  Implements Claude Marketplace metadata","archived":false,"fork":false,"pushed_at":"2026-05-22T15:50:04.000Z","size":58,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-25T12:05:32.288Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KxSystems.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-20T14:52:35.000Z","updated_at":"2026-05-23T09:15:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/KxSystems/kx-skills","commit_stats":null,"previous_names":["kxsystems/kx-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/KxSystems/kx-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KxSystems%2Fkx-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KxSystems%2Fkx-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KxSystems%2Fkx-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KxSystems%2Fkx-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KxSystems","download_url":"https://codeload.github.com/KxSystems/kx-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KxSystems%2Fkx-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33670211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-29T21:01:34.676Z","updated_at":"2026-05-29T21:01:36.118Z","avatar_url":"https://github.com/KxSystems.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# KX Plugins for Claude Code\n\nPublic marketplace of [Claude Code](https://docs.claude.com/en/docs/claude-code/overview)\nplugins for working with KX products: kdb+/q, PyKX, kdb-X, and KDB.AI.\n\nEach plugin packages one or more Skills — a folder of markdown that Claude loads\nautomatically when it recognises a relevant task. Skills teach Claude\nrepeatable workflows, quality standards, and domain expertise so everyone\ngets consistent, high-quality results.\n\n---\n\n## Plugins\n\n| Plugin       | What it does                                                      | When it triggers |\n|--------------|-------------------------------------------------------------------|------------------|\n| [`q-knowledge`](./plugins/q-knowledge/)                  | kdb+/q language support — idiomatic q, qsql, IPC, kdb+ workflows; also `/qlint-snippet` for KX qlint | Writing q code, querying kdb+ tables, lint checks |\n| [`pykx-knowledge`](./plugins/pykx-knowledge/skills/pykx/) | PyKX — using kdb+/q from Python, type conversions, API guidance  | Working with PyKX, Python-kdb+ integration |\n| [`kdbx-knowledge`](./plugins/kdbx-knowledge/) | kdb-X workflows and `aimeta` metadata authoring + discovery       | KDB-X platform, AI-native vector search, writing/reading aimeta annotations |\n| [`kdbai-knowledge`](./plugins/kdbai-knowledge/skills/kdbai/) | KDB.AI vector database — schema, hybrid search, AI integration   | Building vector search or RAG with KDB.AI |\n\n---\n\n## Installation\n\nIn Claude Code, add the marketplace:\n\n```\n/plugin marketplace add KxSystems/kx-skills\n```\n\n### Install plugins\n\n```\n/plugin install q-knowledge@kx-skills\n/plugin install pykx-knowledge@kx-skills\n/plugin install kdbx-knowledge@kx-skills\n/plugin install kdbai-knowledge@kx-skills\n```\n\nOr browse interactively with `/plugin` and pick from the **Discover** tab.\n\n### Update later\n\n```\n/plugin marketplace update kx-skills\n```\n\n---\n\n## Repo structure\n\n```\nkx-skills/\n├── README.md                        ← you are here\n├── LICENSE                          ← Apache-2.0\n├── .claude-plugin/\n│   └── marketplace.json             ← marketplace catalog\n└── plugins/\n    ├── q-knowledge/\n    │   ├── .claude-plugin/plugin.json\n    │   ├── README.md\n    │   └── skills/\n    │       ├── q/                   ← q language \u0026 kdb+ skill\n    │       │   ├── SKILL.md\n    │       │   ├── reference.md\n    │       │   └── references/\n    │       └── qlint-snippet/       ← KX qlint wrapper (executable skill)\n    │           ├── SKILL.md\n    │           └── scripts/run.sh\n    ├── pykx-knowledge/\n    │   ├── .claude-plugin/plugin.json\n    │   └── skills/pykx/             ← PyKX Python-kdb+ interface\n    │       ├── SKILL.md\n    │       └── reference.md\n    ├── kdbx-knowledge/\n    │   ├── .claude-plugin/plugin.json\n    │   ├── reference/               ← shared by kxmeta-* skills\n    │   │   ├── agent-guide.md\n    │   │   ├── meta.schema.json\n    │   │   └── openapi.json\n    │   └── skills/\n    │       ├── kdbx/                ← KDB-X platform\n    │       │   ├── SKILL.md\n    │       │   ├── ai-reference.md\n    │       │   └── gpu-reference.md\n    │       ├── kxmeta-author/       ← writing aimeta annotations\n    │       │   └── SKILL.md\n    │       └── kxmeta-discover/     ← probing aimeta at runtime\n    │           └── SKILL.md\n    └── kdbai-knowledge/\n        ├── .claude-plugin/plugin.json\n        └── skills/kdbai/            ← KDB.AI vector database\n            ├── SKILL.md\n            └── reference.md\n```\n\n---\n\n## Contributing\n\nWe want this to grow. If you've found a better way to do something, improved\na checklist, or want to add a new skill entirely — please open an issue or\npull request against [KxSystems/kx-skills](https://github.com/KxSystems/kx-skills).\n\nSkills are plain markdown — no code required to improve them.\n\n---\n\n## Principles\n\n1. **Skills are living documents.** If a checklist item is wrong or missing, fix it.\n2. **Evidence over assertions.** Skills must require proof of work, not just promises.\n3. **No gold-plating.** Add complexity only when it prevents real problems.\n\n---\n\n## License\n\nApache License 2.0 — see [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkxsystems%2Fkx-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkxsystems%2Fkx-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkxsystems%2Fkx-skills/lists"}