You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/getting-started/ai-coding-agents.mdx
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ description:
5
5
Use AI coding agents like Claude Code or OpenAI Codex to build applications, write queries, and work with QuestDB using natural language.
6
6
---
7
7
8
+
importTabsfrom"@theme/Tabs";
9
+
10
+
importTabItemfrom"@theme/TabItem";
11
+
8
12
AI coding agents like <ahref="https://claude.ai/code"target="_blank">Claude Code</a> and <ahref="https://openai.com/index/openai-codex/"target="_blank">OpenAI Codex</a> can help you build applications that use QuestDB.
9
13
10
14
These agents work with QuestDB out of the box by reading the online documentation. For deeper integration, agent skills embed rich context directly into the agent so it can work faster and more accurately. The [QuestDB agent skill](#questdb-agent-skill) covers SQL, ingestion, and Grafana dashboards, while the [TSBS Benchmark skill](#tsbs-benchmark-skill) automates end-to-end performance benchmarking.
@@ -50,6 +54,23 @@ The <a href="https://github.com/questdb/questdb-agent-skill" target="_blank">Que
50
54
51
55
### Installation
52
56
57
+
<TabsdefaultValue="npx"values={[
58
+
{ label: "npx (recommended)", value: "npx" },
59
+
{ label: "Manual copy", value: "manual" },
60
+
]}>
61
+
62
+
<TabItemvalue="npx">
63
+
64
+
```shell
65
+
npx skills add questdb/questdb-agent-skill
66
+
```
67
+
68
+
This installs the skill globally for Claude Code. To install it for a specific project only, run the command from the project directory with the `--local` flag.
69
+
70
+
</TabItem>
71
+
72
+
<TabItemvalue="manual">
73
+
53
74
Copy the `questdb/` folder from the <ahref="https://github.com/questdb/questdb-agent-skill"target="_blank">repository</a> into your skills directory:
54
75
55
76
**Claude Code:**
@@ -62,6 +83,10 @@ Copy the `questdb/` folder from the <a href="https://github.com/questdb/questdb-
62
83
63
84
The folder must contain `SKILL.md` and the `references/` directory.
64
85
86
+
</TabItem>
87
+
88
+
</Tabs>
89
+
65
90
### What's included
66
91
67
92
-**SQL reference** - QuestDB-specific syntax including `SAMPLE BY`, `LATEST ON`, `ASOF JOIN`, window functions, and materialized views
0 commit comments