@itradingai/aiwiki 0.2.21 → 0.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +211 -179
- package/README.zh-CN.md +312 -0
- package/docs/AGENT_HANDOFF.md +115 -185
- package/docs/AGENT_HANDOFF.zh-CN.md +150 -0
- package/docs/FAQ.md +73 -49
- package/docs/FAQ.zh-CN.md +103 -0
- package/docs/README.md +34 -23
- package/docs/README.zh-CN.md +34 -0
- package/docs/RELEASE.md +46 -16
- package/docs/RELEASE.zh-CN.md +84 -0
- package/docs/ROADMAP.md +51 -29
- package/docs/ROADMAP.zh-CN.md +65 -0
- package/docs/SHOWCASE.md +59 -45
- package/docs/SHOWCASE.zh-CN.md +81 -0
- package/docs/TRIAL_FEEDBACK_TEMPLATE.md +49 -0
- package/docs/USAGE.md +174 -362
- package/docs/USAGE.zh-CN.md +247 -0
- package/docs/development-log.md +145 -0
- package/package.json +12 -3
- package/skill/SKILL.md +6 -2
package/README.md
CHANGED
|
@@ -1,291 +1,323 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/iTradingAI/aiwiki/main/docs/assets/aiwiki-hero.png" alt="AIWiki" width="100%" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="./README.zh-CN.md">Chinese</a> |
|
|
7
|
+
<a href="./docs/README.md">Docs</a> |
|
|
8
|
+
<a href="./docs/USAGE.md">Usage</a> |
|
|
9
|
+
<a href="./docs/FAQ.md">FAQ</a> |
|
|
10
|
+
<a href="https://www.npmjs.com/package/@itradingai/aiwiki">npm</a>
|
|
11
|
+
</p>
|
|
2
12
|
|
|
3
13
|
# AIWiki
|
|
4
14
|
|
|
5
|
-
|
|
15
|
+
[](https://www.npmjs.com/package/@itradingai/aiwiki)
|
|
16
|
+
[](https://nodejs.org/)
|
|
17
|
+
[](LICENSE)
|
|
6
18
|
|
|
7
|
-
|
|
19
|
+
**Save what your AI reads. Ask it later. Keep everything local.**
|
|
8
20
|
|
|
9
|
-
|
|
21
|
+
AIWiki is a local Markdown knowledge base for AI assistants.
|
|
10
22
|
|
|
11
|
-
|
|
23
|
+
Give your AI assistant a URL, article, file, or note. The assistant reads and understands it. AIWiki turns the result into structured, traceable, reusable Markdown knowledge files.
|
|
12
24
|
|
|
13
|
-
|
|
14
|
-
- AI 总结过一次内容,但没有沉淀成可查询的知识条目。
|
|
15
|
-
- 想把资料卡、选题、大纲、Wiki 条目放进同一个本地知识库。
|
|
16
|
-
- 想让 Agent 负责理解内容,让 CLI 负责稳定落盘和追踪。
|
|
25
|
+
Use it to build a local AI knowledge base that can be queried, checked, maintained, and reused later.
|
|
17
26
|
|
|
18
|
-
##
|
|
27
|
+
## Quick Start
|
|
19
28
|
|
|
20
|
-
|
|
29
|
+
Ask your AI assistant to install and configure AIWiki.
|
|
30
|
+
|
|
31
|
+
1. Choose a local folder for your knowledge base.
|
|
21
32
|
|
|
22
33
|
```text
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-> AIWiki 写入 Raw / Source Card / Wiki Entry / Run Summary;有明确内容或请求时再写 Claim / Topic / Outline / Asset
|
|
34
|
+
Windows: D:\AIWiki
|
|
35
|
+
macOS/Linux: ~/AIWiki
|
|
36
|
+
Project test: ./aiwiki-test
|
|
27
37
|
```
|
|
28
38
|
|
|
29
|
-
|
|
39
|
+
2. Copy this prompt into Codex, Claude Code, QClaw, OpenClaw, or another local coding assistant.
|
|
30
40
|
|
|
31
|
-
|
|
32
|
-
aiwiki context "AI Agent 出海机会"
|
|
33
|
-
aiwiki query "AI Agent 出海机会"
|
|
34
|
-
```
|
|
41
|
+
Before sending it, replace every `<replace-with-my-aiwiki-path>` with your own local folder path, such as `D:\AIWiki` or `~/AIWiki`. Do not leave the placeholder in the commands.
|
|
35
42
|
|
|
36
|
-
|
|
43
|
+
```text
|
|
44
|
+
Please install and configure AIWiki for me.
|
|
37
45
|
|
|
38
|
-
|
|
46
|
+
First check that Node.js is installed and that node --version is >=20.
|
|
47
|
+
If Node.js is missing or older than 20, stop and tell me how to upgrade before running npm install.
|
|
39
48
|
|
|
40
|
-
|
|
41
|
-
aiwiki lint
|
|
42
|
-
```
|
|
49
|
+
Use this knowledge base path:
|
|
43
50
|
|
|
44
|
-
|
|
51
|
+
<replace-with-my-aiwiki-path>
|
|
45
52
|
|
|
46
|
-
|
|
53
|
+
Replace every `<replace-with-my-aiwiki-path>` below with my own local folder path before running commands. If I left the placeholder unchanged, stop and ask me for the real path.
|
|
47
54
|
|
|
48
|
-
|
|
55
|
+
Run these commands:
|
|
49
56
|
|
|
50
|
-
-
|
|
51
|
-
|
|
57
|
+
npm install -g @itradingai/aiwiki@latest
|
|
58
|
+
aiwiki setup --path "<replace-with-my-aiwiki-path>" --yes
|
|
59
|
+
aiwiki agent sync --yes
|
|
60
|
+
aiwiki agent sync --path "<replace-with-my-aiwiki-path>" --yes
|
|
61
|
+
aiwiki agent check --json
|
|
62
|
+
aiwiki agent check --path "<replace-with-my-aiwiki-path>" --json
|
|
63
|
+
aiwiki doctor --path "<replace-with-my-aiwiki-path>"
|
|
64
|
+
aiwiki status --path "<replace-with-my-aiwiki-path>"
|
|
65
|
+
|
|
66
|
+
Then tell me:
|
|
67
|
+
|
|
68
|
+
1. whether AIWiki was installed successfully
|
|
69
|
+
2. which assistant targets were synced
|
|
70
|
+
3. whether workspace guidance was written
|
|
71
|
+
4. whether I need to restart or reload my assistant
|
|
72
|
+
5. what I should do next
|
|
73
|
+
```
|
|
52
74
|
|
|
53
|
-
|
|
75
|
+
3. Restart or reload your assistant if needed.
|
|
54
76
|
|
|
55
|
-
|
|
77
|
+
If assistant sync fails, open an [Agent Integration issue](https://github.com/iTradingAI/aiwiki/issues/new?template=agent_integration.md) and include the output of `aiwiki agent check --json` and `aiwiki doctor --path "<workspace>"`.
|
|
56
78
|
|
|
57
|
-
|
|
79
|
+
## First Use
|
|
58
80
|
|
|
59
|
-
|
|
81
|
+
Trying AIWiki for the first time? Use the short trial route in the [Usage Guide](docs/USAGE.md#3-ingest-a-source).
|
|
82
|
+
|
|
83
|
+
### Ingest a source
|
|
84
|
+
|
|
85
|
+
Tell your assistant:
|
|
60
86
|
|
|
61
87
|
```text
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
我的知识库路径:F:\knowledges
|
|
65
|
-
|
|
66
|
-
请检查 Node.js >=20,执行 aiwiki setup --path "我的知识库路径" --yes,
|
|
67
|
-
然后运行 aiwiki agent sync --yes、aiwiki agent check --json、
|
|
68
|
-
aiwiki agent sync --path "我的知识库路径" --yes 和 aiwiki agent check --path "我的知识库路径" --json,
|
|
69
|
-
完成宿主 Agent 与知识库根指导对接。
|
|
70
|
-
最后执行 aiwiki doctor 和 aiwiki status,告诉我实际执行了哪些命令和还差什么手动步骤。
|
|
88
|
+
Ingest this into AIWiki:
|
|
89
|
+
<url>
|
|
71
90
|
```
|
|
72
91
|
|
|
73
|
-
|
|
92
|
+
Or:
|
|
74
93
|
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
aiwiki agent check --json
|
|
94
|
+
```text
|
|
95
|
+
Save this note into AIWiki:
|
|
96
|
+
<paste your note here>
|
|
79
97
|
```
|
|
80
98
|
|
|
81
|
-
|
|
99
|
+
The assistant reads the source and calls AIWiki to write the result into your local knowledge base.
|
|
82
100
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
101
|
+
### Ask your knowledge base
|
|
102
|
+
|
|
103
|
+
Tell your assistant:
|
|
104
|
+
|
|
105
|
+
```text
|
|
106
|
+
What does AIWiki know about <topic>?
|
|
88
107
|
```
|
|
89
108
|
|
|
90
|
-
|
|
109
|
+
The assistant should call:
|
|
91
110
|
|
|
92
111
|
```bash
|
|
93
|
-
aiwiki
|
|
112
|
+
aiwiki context "<topic>"
|
|
94
113
|
```
|
|
95
114
|
|
|
96
|
-
|
|
115
|
+
For direct terminal output, use:
|
|
97
116
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
```text
|
|
101
|
-
入库 https://example.com/article
|
|
117
|
+
```bash
|
|
118
|
+
aiwiki query "<topic>"
|
|
102
119
|
```
|
|
103
120
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
### 第四步:从知识库提问
|
|
121
|
+
### Check your workspace
|
|
107
122
|
|
|
108
|
-
|
|
123
|
+
Tell your assistant:
|
|
109
124
|
|
|
110
125
|
```text
|
|
111
|
-
|
|
126
|
+
Check and organize my AIWiki workspace.
|
|
112
127
|
```
|
|
113
128
|
|
|
114
|
-
|
|
129
|
+
The assistant should call:
|
|
115
130
|
|
|
116
131
|
```bash
|
|
117
|
-
aiwiki
|
|
132
|
+
aiwiki lint --json
|
|
118
133
|
```
|
|
119
134
|
|
|
120
|
-
|
|
135
|
+
## What AIWiki Creates
|
|
121
136
|
|
|
122
|
-
|
|
123
|
-
aiwiki query "xxx"
|
|
124
|
-
```
|
|
137
|
+
A successful ingest creates a traceable knowledge package:
|
|
125
138
|
|
|
126
|
-
|
|
139
|
+
```text
|
|
140
|
+
02-raw/articles/ Raw source record
|
|
141
|
+
03-sources/article-cards/ Source card
|
|
142
|
+
05-wiki/source-knowledge/ Reusable wiki entry
|
|
143
|
+
09-runs/<run-id>/ Processing record
|
|
144
|
+
```
|
|
127
145
|
|
|
128
|
-
|
|
146
|
+
Optional files may also be created when the assistant provides enough structured content:
|
|
129
147
|
|
|
130
148
|
```text
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
149
|
+
04-claims/_suggestions/ Claim candidates
|
|
150
|
+
06-assets/_suggestions/ Reusable ideas or writing assets
|
|
151
|
+
07-topics/ready/ Topic candidates
|
|
152
|
+
08-outputs/outlines/ Draft outlines
|
|
135
153
|
```
|
|
136
154
|
|
|
137
|
-
|
|
155
|
+
The Wiki Entry is the main reusable knowledge surface. The raw record and source card preserve traceability, so you can always go back from a summary to the source.
|
|
138
156
|
|
|
139
|
-
|
|
157
|
+
See:
|
|
140
158
|
|
|
141
|
-
|
|
159
|
+
- [`examples/demo-run/`](examples/demo-run/)
|
|
160
|
+
- [`examples/obsidian-vault-sample/`](examples/obsidian-vault-sample/)
|
|
142
161
|
|
|
143
|
-
|
|
162
|
+
## Why AIWiki
|
|
144
163
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
164
|
+
Most useful information dies in one of three places:
|
|
165
|
+
|
|
166
|
+
- bookmarks you never reopen
|
|
167
|
+
- chat summaries you cannot reuse
|
|
168
|
+
- notes that never become output
|
|
169
|
+
|
|
170
|
+
AIWiki helps your assistant turn reading into a durable local knowledge base.
|
|
171
|
+
|
|
172
|
+
Instead of saving links and losing context, you get Markdown files that your assistant can query, maintain, and reuse later.
|
|
153
173
|
|
|
154
|
-
|
|
174
|
+
## Practical Scenarios
|
|
155
175
|
|
|
156
|
-
|
|
176
|
+
- **Build a personal research wiki** from articles, PDFs, files, and notes.
|
|
177
|
+
- **Turn useful reading into reusable ideas** such as concepts, claims, topics, and outlines.
|
|
178
|
+
- **Give Codex, Claude Code, or QClaw a stable local knowledge layer** it can query before answering.
|
|
179
|
+
- **Keep summaries traceable** with raw records, source cards, Wiki Entries, and run records.
|
|
157
180
|
|
|
158
|
-
|
|
181
|
+
## How It Works
|
|
159
182
|
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
represents_user_view: false
|
|
183
|
+
```text
|
|
184
|
+
User gives a URL, file, note, or text
|
|
185
|
+
-> AI assistant reads and understands it
|
|
186
|
+
-> AIWiki writes structured Markdown files
|
|
187
|
+
-> Assistant retrieves context later with aiwiki context
|
|
188
|
+
-> AIWiki lint checks structure and consistency
|
|
167
189
|
```
|
|
168
190
|
|
|
169
|
-
AIWiki
|
|
191
|
+
AIWiki separates responsibilities:
|
|
170
192
|
|
|
171
|
-
|
|
193
|
+
- the assistant reads and understands sources
|
|
194
|
+
- AIWiki writes, links, queries, and checks the local knowledge base
|
|
195
|
+
- Markdown remains inspectable, editable, portable, and versionable
|
|
172
196
|
|
|
173
|
-
AIWiki
|
|
197
|
+
Technically, AIWiki is Agent-first: the host assistant reads and understands sources; AIWiki writes, links, queries, and checks the local Markdown knowledge base.
|
|
174
198
|
|
|
175
|
-
|
|
176
|
-
- 写入本地 Markdown。
|
|
177
|
-
- 生成 frontmatter、wikilink、处理记录。
|
|
178
|
-
- 生成 Wiki Entry 容器。
|
|
179
|
-
- 支持 `context`、`query`、`next` 和 `lint`。
|
|
199
|
+
## Inspired By
|
|
180
200
|
|
|
181
|
-
AIWiki
|
|
201
|
+
AIWiki is inspired by two useful ideas:
|
|
182
202
|
|
|
183
|
-
-
|
|
184
|
-
-
|
|
185
|
-
- 伪造浏览器头。
|
|
186
|
-
- 浏览器插件。
|
|
187
|
-
- CLI 内置 LLM。
|
|
188
|
-
- 自动高质量总结。
|
|
189
|
-
- 默认人工审核流程。
|
|
190
|
-
- 企业级 RBAC。
|
|
191
|
-
- 多知识库。
|
|
192
|
-
- 批量采集 / 定时采集 / RSS。
|
|
203
|
+
- **LLM Wiki**, popularized by Andrej Karpathy: compile sources into a persistent, maintainable wiki instead of rediscovering knowledge from raw documents every time.
|
|
204
|
+
- **Content workflow thinking**, seen in creator systems such as Dan Koe's: useful ideas should become reusable building blocks for topics, outlines, writing, and future work.
|
|
193
205
|
|
|
194
|
-
|
|
206
|
+
AIWiki does not simply copy either approach.
|
|
195
207
|
|
|
196
|
-
|
|
208
|
+
It turns them into a practical assistant-driven workflow:
|
|
197
209
|
|
|
198
|
-
|
|
210
|
+
```text
|
|
211
|
+
source
|
|
212
|
+
-> source card
|
|
213
|
+
-> wiki entry
|
|
214
|
+
-> reusable assets
|
|
215
|
+
-> topics
|
|
216
|
+
-> outlines
|
|
217
|
+
-> future work
|
|
218
|
+
```
|
|
199
219
|
|
|
200
|
-
|
|
220
|
+
The goal is simple: make what your assistant reads useful again later.
|
|
201
221
|
|
|
202
|
-
##
|
|
222
|
+
## Agent Integration
|
|
203
223
|
|
|
204
|
-
|
|
224
|
+
AIWiki is built for assistant-driven workflows. `aiwiki agent sync --yes` syncs packaged AIWiki instructions into supported local assistant environments, and `aiwiki agent sync --path "<workspace>" --yes` writes workspace guidance so assistants entering the knowledge base use AIWiki commands first.
|
|
205
225
|
|
|
206
|
-
|
|
226
|
+
See [Agent Handoff](docs/AGENT_HANDOFF.md) for the full command-first contract.
|
|
207
227
|
|
|
208
|
-
|
|
228
|
+
## Obsidian and Dataview
|
|
209
229
|
|
|
210
|
-
|
|
230
|
+
AIWiki writes plain Markdown and frontmatter.
|
|
211
231
|
|
|
212
|
-
|
|
232
|
+
Obsidian is optional but useful as a viewing surface. Dataview is an optional dashboard enhancement.
|
|
213
233
|
|
|
214
|
-
|
|
234
|
+
AIWiki does not require Obsidian, does not auto-install Dataview, and does not edit `.obsidian`.
|
|
215
235
|
|
|
216
|
-
|
|
236
|
+
Review Queue is not the main workflow. AIWiki creates Wiki entries first, then uses lint and assistant workflows to keep the workspace clean.
|
|
217
237
|
|
|
218
|
-
|
|
238
|
+
## Security and Privacy
|
|
219
239
|
|
|
220
|
-
|
|
240
|
+
- AIWiki writes local Markdown and JSON files.
|
|
241
|
+
- AIWiki does not upload your knowledge base.
|
|
242
|
+
- AIWiki does not include a built-in LLM.
|
|
243
|
+
- AIWiki does not crawl the web by itself.
|
|
244
|
+
- `npm install` does not modify assistant configuration.
|
|
245
|
+
- Agent integration is explicit through `aiwiki agent sync`.
|
|
221
246
|
|
|
222
|
-
|
|
247
|
+
## Current Status
|
|
223
248
|
|
|
224
|
-
|
|
249
|
+
AIWiki currently focuses on:
|
|
225
250
|
|
|
226
|
-
|
|
251
|
+
- one local AIWiki knowledge base
|
|
252
|
+
- local Markdown and frontmatter retrieval
|
|
253
|
+
- assistant-driven ingest
|
|
254
|
+
- Source Cards and Wiki Entries
|
|
255
|
+
- `context`, `query`, `lint`, `status`, and `doctor` workflows
|
|
227
256
|
|
|
228
|
-
|
|
257
|
+
Semantic search, vector indexing, browser clipping, RSS collection, and enterprise permissions are intentionally out of scope for now.
|
|
229
258
|
|
|
230
|
-
|
|
231
|
-
- [docs/AGENT_HANDOFF.md](docs/AGENT_HANDOFF.md)
|
|
232
|
-
- [docs/FAQ.md](docs/FAQ.md)
|
|
233
|
-
- [docs/SHOWCASE.md](docs/SHOWCASE.md)
|
|
234
|
-
- [docs/ROADMAP.md](docs/ROADMAP.md)
|
|
235
|
-
- [docs/RELEASE.md](docs/RELEASE.md)
|
|
236
|
-
- [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
237
|
-
- [SECURITY.md](SECURITY.md)
|
|
259
|
+
## Boundaries
|
|
238
260
|
|
|
239
|
-
|
|
261
|
+
AIWiki is not:
|
|
240
262
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
aiwiki next --path "F:\knowledge_data\aiwiki-test"
|
|
252
|
-
aiwiki lint --path "F:\knowledge_data\aiwiki-test"
|
|
253
|
-
```
|
|
263
|
+
- a web crawler
|
|
264
|
+
- a WeChat reader
|
|
265
|
+
- a browser extension
|
|
266
|
+
- a built-in LLM
|
|
267
|
+
- a vector database
|
|
268
|
+
- a replacement for every RAG system
|
|
269
|
+
- an Obsidian plugin
|
|
270
|
+
- a default manual review queue
|
|
271
|
+
- a multi-knowledge-base manager
|
|
272
|
+
- an RSS or scheduled collection system
|
|
254
273
|
|
|
255
|
-
|
|
274
|
+
AIWiki receives content already read by your assistant and turns it into a local Markdown knowledge base.
|
|
256
275
|
|
|
257
|
-
|
|
276
|
+
## Community
|
|
258
277
|
|
|
259
|
-
|
|
278
|
+
AIWiki is developed by iTradingAI.
|
|
260
279
|
|
|
261
|
-
|
|
280
|
+
For Chinese users, scan the QR codes below to join the WeChat group or follow the official account.
|
|
262
281
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
282
|
+
<p>
|
|
283
|
+
<img src="https://raw.githubusercontent.com/iTradingAI/aiwiki/main/docs/assets/join-group.png" alt="Join WeChat group" width="220" />
|
|
284
|
+
<img src="https://raw.githubusercontent.com/iTradingAI/aiwiki/main/docs/assets/wechat-official-account.png" alt="WeChat official account" width="220" />
|
|
285
|
+
</p>
|
|
267
286
|
|
|
268
|
-
|
|
287
|
+
## Documentation
|
|
269
288
|
|
|
270
|
-
|
|
289
|
+
- [Docs](docs/README.md)
|
|
290
|
+
- [Usage Guide](docs/USAGE.md)
|
|
291
|
+
- [Agent Handoff](docs/AGENT_HANDOFF.md)
|
|
292
|
+
- [FAQ](docs/FAQ.md)
|
|
293
|
+
- [Showcase](docs/SHOWCASE.md)
|
|
294
|
+
- [Trial Feedback Template](docs/TRIAL_FEEDBACK_TEMPLATE.md)
|
|
295
|
+
- [Roadmap](docs/ROADMAP.md)
|
|
296
|
+
- [Release Notes](docs/RELEASE.md)
|
|
271
297
|
|
|
272
|
-
|
|
298
|
+
## Development
|
|
273
299
|
|
|
274
|
-
|
|
300
|
+
For local development:
|
|
275
301
|
|
|
276
302
|
```bash
|
|
277
|
-
npm install
|
|
278
|
-
|
|
279
|
-
|
|
303
|
+
npm install
|
|
304
|
+
npm run build
|
|
305
|
+
npm test
|
|
306
|
+
npm link
|
|
280
307
|
```
|
|
281
308
|
|
|
282
|
-
|
|
309
|
+
Use a temporary workspace for local testing:
|
|
283
310
|
|
|
284
311
|
```bash
|
|
285
|
-
aiwiki
|
|
286
|
-
aiwiki
|
|
312
|
+
aiwiki setup --path "./aiwiki-test" --yes
|
|
313
|
+
aiwiki doctor --path "./aiwiki-test"
|
|
314
|
+
aiwiki status --path "./aiwiki-test"
|
|
315
|
+
aiwiki ingest-agent --payload tests/fixtures/agent_payload.url.valid.json --path "./aiwiki-test"
|
|
316
|
+
aiwiki context "AI Agent" --path "./aiwiki-test"
|
|
317
|
+
aiwiki query "AI Agent" --path "./aiwiki-test"
|
|
318
|
+
aiwiki lint --path "./aiwiki-test"
|
|
287
319
|
```
|
|
288
320
|
|
|
289
|
-
|
|
321
|
+
## License
|
|
290
322
|
|
|
291
|
-
|
|
323
|
+
MIT. See [LICENSE](LICENSE).
|