knowns 0.1.4 → 0.1.6

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 CHANGED
@@ -1,14 +1,25 @@
1
- # Knowns
1
+ <p align="center">
2
+ <img src="images/cover.png" alt="Knowns - Task & Documentation Management" width="100%">
3
+ </p>
2
4
 
3
- > **Know what your team knows.**
5
+ <h1 align="center">Knowns</h1>
4
6
 
5
- CLI tool for dev teams to manage tasks and documentation with AI-first context linking.
7
+ <p align="center">
8
+ <strong>Know what your team knows.</strong>
9
+ </p>
6
10
 
7
- [![npm version](https://img.shields.io/npm/v/knowns.svg?style=flat-square)](https://www.npmjs.com/package/knowns)
8
- [![npm downloads](https://img.shields.io/npm/dm/knowns.svg?style=flat-square)](https://www.npmjs.com/package/knowns)
9
- [![CI](https://img.shields.io/github/actions/workflow/status/knowns-dev/knowns/ci.yml?branch=main&style=flat-square&label=CI)](https://github.com/knowns-dev/knowns/actions)
10
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](./LICENSE)
11
- [![Bundle Size](https://img.shields.io/bundlephobia/min/knowns?style=flat-square)](https://bundlephobia.com/package/knowns)
11
+ <p align="center">
12
+ CLI tool for dev teams to manage tasks and documentation with AI-first context linking.
13
+ </p>
14
+
15
+ <p align="center">
16
+ <a href="https://www.npmjs.com/package/knowns"><img src="https://img.shields.io/npm/v/knowns.svg?style=flat-square" alt="npm version"></a>
17
+ <a href="https://www.npmjs.com/package/knowns"><img src="https://img.shields.io/npm/dm/knowns.svg?style=flat-square" alt="npm downloads"></a>
18
+ <a href="https://github.com/knowns-dev/knowns/actions"><img src="https://img.shields.io/github/actions/workflow/status/knowns-dev/knowns/ci.yml?branch=main&style=flat-square&label=CI" alt="CI"></a>
19
+ <a href="./LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square" alt="License: MIT"></a>
20
+ </p>
21
+
22
+ ---
12
23
 
13
24
  ## Why Knowns?
14
25
 
@@ -16,47 +27,17 @@ CLI tool for dev teams to manage tasks and documentation with AI-first context l
16
27
 
17
28
  **Solution:** Knowns links tasks to documentation with structured context that AI can understand and reference automatically.
18
29
 
19
- ## Core Features
20
-
21
- ### 1. **Context-Aware Task Management**
22
- - Link documentation directly in task descriptions
23
- - AI sees `@.knowns/docs/patterns/guards.md` and knows where to find context
24
- - Related Documentation section auto-extracts all doc links
25
- - No more "remind me how authentication works again"
26
-
27
- ### 2. **Time Tracking Built-In**
28
- - Start/stop timers per task
29
- - Track total time spent
30
- - View time history with task context
31
- - Perfect for time reporting and productivity analysis
32
-
33
- ### 3. **Smart Documentation**
34
- - Nested folder structure (`patterns/`, `guides/`, `architecture/`)
35
- - Markdown links automatically resolve to `@.knowns/docs/` paths
36
- - Search across all docs instantly
37
- - AI can fetch exact context when needed
38
-
39
- ### 4. **AI Integration**
40
- - `--plain` flag outputs clean text for AI consumption
41
- - MCP Server for Claude Desktop integration
42
- - Agent instructions sync across Claude, Gemini, Copilot
43
- - Every task and doc is AI-readable
44
-
45
- ## Who Should Use Knowns?
46
-
47
- ### Perfect For:
48
-
49
- 1. **Teams using AI assistants** - Stop repeating context every session
50
- 2. **Projects with established patterns** - Document once, link everywhere
51
- 3. **Remote/async teams** - Knowledge doesn't live in someone's head
52
- 4. **Developers who pair with AI** - Give AI perfect project memory
53
- 5. **Teams tracking time** - Context + time in one place
54
-
55
- ### Not For:
30
+ ## Features
56
31
 
57
- - Large enterprises needing complex permissions (use Jira)
58
- - Non-technical teams (no markdown)
59
- - Projects without established patterns yet
32
+ | Feature | Description |
33
+ |---------|-------------|
34
+ | 🎯 **Task Management** | Create, track, and manage tasks with acceptance criteria |
35
+ | 📚 **Documentation** | Nested folder structure with markdown support |
36
+ | ⏱️ **Time Tracking** | Built-in timers and time reports |
37
+ | 🔗 **Context Linking** | `@task-42` and `@doc/patterns/auth` references |
38
+ | 🤖 **AI Integration** | MCP Server for Claude Desktop, `--plain` output for AI |
39
+ | 🌐 **Web UI** | Kanban board, document browser, dark mode |
40
+ | 🔄 **Agent Sync** | Sync guidelines to Claude, Gemini, Copilot |
60
41
 
61
42
  ## Installation
62
43
 
@@ -64,413 +45,114 @@ CLI tool for dev teams to manage tasks and documentation with AI-first context l
64
45
  # Using npm
65
46
  npm install -g knowns
66
47
 
67
- # Or using bun
48
+ # Using bun
68
49
  bun install -g knowns
69
50
  ```
70
51
 
71
52
  ## Quick Start
72
53
 
73
54
  ```bash
74
- # 1. Initialize in your project (interactive wizard)
55
+ # Initialize project
75
56
  knowns init
76
57
 
77
- # Or with project name directly
78
- knowns init "My Project"
58
+ # Create documentation
59
+ knowns doc create "Auth Pattern" -d "JWT authentication" -t "patterns" -f patterns
79
60
 
80
- # 2. Create documentation for your patterns
81
- knowns doc create "Authentication Pattern" \
82
- -d "JWT-based auth with guards" \
83
- -t "patterns,auth"
61
+ # Create task with context
62
+ knowns task create "Add authentication" \
63
+ -d "Implement JWT auth following @doc/patterns/auth-pattern" \
64
+ --ac "User can login" \
65
+ --ac "Session persists"
84
66
 
85
- # 3. Create task with context links
86
- knowns task create "Add user authentication" \
87
- -d $'Implement JWT auth following [authentication pattern](./patterns/authentication-pattern.md)
88
-
89
- Requirements:
90
- - Use JWT tokens
91
- - Email/password login
92
- - Session persistence' \
93
- --ac "User can login with email/password" \
94
- --ac "Session persists across page refresh"
95
-
96
- # 4. View task (AI-readable format)
67
+ # View task (AI-readable)
97
68
  knowns task view 1 --plain
98
69
 
99
- # Output shows:
100
- # Description: ...
101
- # Related Documentation:
102
- # 📄 authentication pattern: @.knowns/docs/patterns/authentication-pattern.md
103
-
104
- # 5. AI reads the linked docs and implements with full context!
105
- ```
106
-
107
- **Key insight:** Link docs in descriptions. AI gets context automatically.
108
-
109
- ## The Context Problem
110
-
111
- ### Before Knowns:
112
-
113
- ```
114
- Session 1:
115
- You: "Implement feature X"
116
- AI: "How does your auth work?"
117
- You: *explains guards pattern*
118
- AI: *implements*
119
-
120
- Session 2 (next day):
121
- You: "Implement feature Y"
122
- AI: "How does your auth work?"
123
- You: *explains AGAIN*
124
- ```
125
-
126
- ### With Knowns:
127
-
128
- ```
129
- Session 1:
130
- You: "Implement feature X, follow [guards.md](./patterns/guards.md)"
131
- AI: *reads doc, implements correctly*
132
-
133
- Session 2:
134
- You: "Implement feature Y, follow [guards.md](./patterns/guards.md)"
135
- AI: *reads same doc, implements consistently*
136
-
137
- Session 100:
138
- You: "Implement feature Z, follow [guards.md](./patterns/guards.md)"
139
- AI: *still reads same doc, never forgets*
70
+ # Open Web UI
71
+ knowns browser
140
72
  ```
141
73
 
142
- **Benefits:**
143
- - ✅ No repetition
144
- - ✅ Consistent implementations
145
- - ✅ Onboarding is instant (AI reads docs)
146
- - ✅ Documentation stays up-to-date (it's actually used)
147
- - ✅ New team members follow same patterns
148
-
149
74
  ## Commands
150
75
 
151
- ### Task Management
76
+ ### Tasks
152
77
 
153
78
  ```bash
154
- # Create task
155
- knowns task create "Title" -d "Description" --ac "Criterion 1"
156
-
157
- # View task
79
+ knowns task create "Title" -d "Description" --ac "Criterion"
158
80
  knowns task view <id> --plain
159
-
160
- # Edit task
161
- knowns task edit <id> -s "In Progress" -a @yourself
162
- knowns task edit <id> --check-ac 1
163
- knowns task edit <id> --plan $'1. Research\n2. Implement\n3. Test'
164
- knowns task edit <id> --notes "Implementation complete"
165
-
166
- # List tasks
167
81
  knowns task list --plain
168
- knowns task list -s "In Progress" --plain
82
+ knowns task edit <id> -s in-progress -a @me
83
+ knowns task edit <id> --check-ac 1 --check-ac 2
84
+ knowns task edit <id> --plan "1. Step 1\n2. Step 2"
85
+ knowns task edit <id> --notes "Implementation summary"
169
86
  ```
170
87
 
171
88
  ### Documentation
172
89
 
173
90
  ```bash
174
- # List all docs (includes nested folders)
91
+ knowns doc create "Title" -d "Description" -t "tags" -f "folder"
92
+ knowns doc view "doc-name" --plain
175
93
  knowns doc list --plain
176
-
177
- # View document
178
- knowns doc view patterns/guards --plain
179
-
180
- # Create document
181
- knowns doc create "API Guidelines" -d "REST API standards" -t "api,backend"
182
-
183
- # Edit metadata
184
- knowns doc edit <name> -t "New Title" -d "Updated description"
185
- ```
186
-
187
- ### Search
188
-
189
- ```bash
190
- # Search everything
191
- knowns search "authentication" --plain
192
-
193
- # Search tasks only
194
- knowns search "login" --type task --plain
195
-
196
- # Search with filters
197
- knowns search "api" --status "In Progress" --plain
94
+ knowns doc edit "doc-name" -c "New content"
95
+ knowns doc edit "doc-name" -a "Appended content"
198
96
  ```
199
97
 
200
- ### Web UI
201
-
202
- ```bash
203
- # Open browser UI (Kanban + Docs)
204
- knowns browser
205
-
206
- # Open on specific port
207
- knowns browser -p 8080
208
- ```
209
-
210
- ### Project Initialization
211
-
212
- ```bash
213
- # Interactive wizard (recommended)
214
- knowns init
215
-
216
- # 🚀 Knowns Project Setup Wizard
217
- # ? Project name › my-project
218
- # ? Default assignee (optional) › @claude
219
- # ? Default priority for new tasks › Medium
220
- # ? Default labels (comma-separated) › frontend, ui
221
- # ? Time format › 24-hour
222
-
223
- # Quick init with name
224
- knowns init "My Project"
225
-
226
- # Skip wizard, use defaults
227
- knowns init --no-wizard
228
- ```
229
-
230
- ### Agent Instructions
231
-
232
- ```bash
233
- # Sync guidelines to all agent instruction files
234
- knowns agents --update-instructions
235
- ```
236
-
237
- Updates:
238
- - `CLAUDE.md` - Claude Code
239
- - `AGENTS.md` - Agent SDK
240
- - `GEMINI.md` - Gemini
241
- - `.github/copilot-instructions.md` - GitHub Copilot
242
-
243
- ## Task Workflow
244
-
245
- ### 1. Take Task
246
- ```bash
247
- knowns task edit <id> -s "In Progress" -a @yourself
248
- ```
249
-
250
- ### 2. Create Plan
251
- ```bash
252
- knowns task edit <id> --plan $'1. Research API\n2. Implement feature\n3. Add tests'
253
- ```
254
-
255
- ### 3. Work & Check Criteria
256
- ```bash
257
- # As you complete acceptance criteria
258
- knowns task edit <id> --check-ac 1 --check-ac 2 --check-ac 3
259
- ```
260
-
261
- ### 4. Add Implementation Notes
262
- ```bash
263
- knowns task edit <id> --notes $'Implemented using X pattern\nAdded comprehensive tests\nReady for review'
264
- ```
98
+ ### Time Tracking
265
99
 
266
- ### 5. Complete
267
100
  ```bash
268
- knowns task edit <id> -s Done
269
- ```
270
-
271
- ## File Structure
272
-
273
- After `knowns init`:
274
-
275
- ```
276
- .knowns/
277
- ├── tasks/ # Task markdown files
278
- └── docs/ # Documentation (supports nested folders)
279
- ├── patterns/
280
- ├── guides/
281
- └── architecture/
101
+ knowns time start <task-id>
102
+ knowns time stop
103
+ knowns time status
104
+ knowns time report --from "2025-01-01" --to "2025-12-31"
282
105
  ```
283
106
 
284
- ## Context Linking in Action
285
-
286
- ### Problem: AI Loses Context
287
-
288
- **Without Knowns:**
289
- ```
290
- User: "Implement authentication for the new API endpoint"
291
- AI: "Sure! What authentication method are you using?"
292
- User: "We use JWT with guards pattern"
293
- AI: "Can you explain your guards pattern?"
294
- User: *explains again for the 10th time*
295
- ```
107
+ ### Search
296
108
 
297
- **With Knowns:**
298
109
  ```bash
299
- # Create task with context links
300
- knowns task create "Implement auth for /users endpoint" \
301
- -d "Follow our standard [guards pattern](./patterns/guards.md) and [JWT setup](./patterns/authentication.md)"
302
-
303
- # AI reads task
304
- knowns task view 42 --plain
110
+ knowns search "query" --plain
111
+ knowns search "auth" --type task --plain
112
+ knowns search "patterns" --type doc --plain
305
113
  ```
306
114
 
307
- **Output:**
308
- ```
309
- Description:
310
- Follow our standard guards pattern and JWT setup
311
-
312
- Related Documentation:
313
- 📄 guards pattern: @.knowns/docs/patterns/guards.md
314
- 📄 JWT setup: @.knowns/docs/patterns/authentication.md
315
- ```
316
-
317
- AI now knows EXACTLY where to find your patterns. No context loss.
318
-
319
- ### How It Works
320
-
321
- 1. **Link docs in task descriptions:**
322
- ```markdown
323
- See [mapper pattern](./patterns/mapper.md) for data conversion
324
- ```
325
-
326
- 2. **AI-readable output:**
327
- ```bash
328
- knowns task view 1 --plain
329
- # Shows: @.knowns/docs/patterns/mapper.md
330
- ```
331
-
332
- 3. **AI fetches context automatically:**
333
- - Via MCP Server (Claude Desktop)
334
- - Via search commands
335
- - Direct doc reading
336
-
337
- ### Example: Complete Task with Context
115
+ ### Other
338
116
 
339
117
  ```bash
340
- knowns task create "Add user profile endpoint" -d $'Implement GET /api/users/:id
341
-
342
- Architecture:
343
- - Follow [controller pattern](./patterns/controller.md)
344
- - Use [repository pattern](./patterns/repository.md) for data access
345
- - Apply [DTO pattern](./patterns/dto.md) for response
346
- - Add [guards](./patterns/guards.md) for auth
347
-
348
- See [API guidelines](./guides/api-standards.md) for naming conventions'
349
- ```
350
-
351
- When AI reads this task, it sees:
118
+ knowns browser # Open Web UI
119
+ knowns agents --update-instructions # Sync AI guidelines
120
+ knowns mcp # Start MCP server
352
121
  ```
353
- Related Documentation:
354
- 📄 controller pattern: @.knowns/docs/patterns/controller.md
355
- 📄 repository pattern: @.knowns/docs/patterns/repository.md
356
- 📄 DTO pattern: @.knowns/docs/patterns/dto.md
357
- 📄 guards: @.knowns/docs/patterns/guards.md
358
- 📄 API guidelines: @.knowns/docs/guides/api-standards.md
359
- ```
360
-
361
- AI has ALL the context it needs. Zero repetition.
362
122
 
363
- ## Features Deep Dive
123
+ ## Reference System
364
124
 
365
- ### Smart Document Linking
125
+ Link tasks and docs using `@` syntax:
366
126
 
367
- Links in tasks/docs are automatically resolved:
127
+ | Type | Input | Output |
128
+ |------|-------|--------|
129
+ | Task | `@task-42` | `@.knowns/tasks/task-42 - Title.md` |
130
+ | Doc | `@doc/patterns/auth` | `@.knowns/docs/patterns/auth.md` |
368
131
 
369
- **Markdown:**
132
+ **Example:**
370
133
  ```markdown
371
- [guards.md](./patterns/guards.md)
134
+ Implement auth following @doc/patterns/guards
135
+ Related: @task-42 @task-38
372
136
  ```
373
137
 
374
- **Plain output:**
375
- ```
376
- @.knowns/docs/patterns/guards.md
377
- ```
378
-
379
- ### Acceptance Criteria Management
380
-
381
- ```bash
382
- # Add criteria
383
- knowns task edit 42 --ac "New criterion"
384
-
385
- # Check multiple at once
386
- knowns task edit 42 --check-ac 1 --check-ac 2 --check-ac 3
387
-
388
- # Uncheck
389
- knowns task edit 42 --uncheck-ac 2
390
-
391
- # Remove
392
- knowns task edit 42 --remove-ac 3
393
- ```
394
-
395
- ### Multi-line Input
396
-
397
- **Bash/Zsh:**
398
- ```bash
399
- knowns task edit 42 --plan $'1. Step one\n2. Step two\n3. Step three'
400
- ```
401
-
402
- **PowerShell:**
403
- ```powershell
404
- knowns task edit 42 --notes "Line 1`nLine 2"
405
- ```
406
-
407
- ### Time Tracking
408
-
409
- ```bash
410
- # Start timer for task
411
- knowns time start 42
412
-
413
- # Stop timer
414
- knowns time stop 42
138
+ AI reads task → sees refs → fetches context → implements correctly.
415
139
 
416
- # View time spent
417
- knowns task view 42 --plain
418
- # Shows: Time Spent: 2h 30m
419
-
420
- # View time history
421
- knowns time list 42
422
- ```
423
-
424
- **Why built-in time tracking?**
425
- - Task context is preserved (what you worked on)
426
- - Links to documentation show what you learned
427
- - AI can analyze time patterns
428
- - No separate time tracking tool needed
429
-
430
- ### Search with Filters
140
+ ## Web UI
431
141
 
432
142
  ```bash
433
- # By status
434
- knowns search "api" --status "In Progress"
435
-
436
- # By priority
437
- knowns search "bug" --priority high
438
-
439
- # By assignee
440
- knowns task list -a @john --plain
143
+ knowns browser
441
144
  ```
442
145
 
443
- ## Web UI
444
-
445
- The browser UI provides:
446
-
447
- - **Kanban Board** - Drag & drop tasks across status columns
448
- - **Task Details** - Full task view with inline editing
146
+ Features:
147
+ - **Kanban Board** - Drag & drop tasks
449
148
  - **Document Browser** - Tree view with markdown preview
450
- - **Configuration** - Full config.json editing (Form + JSON modes)
149
+ - **Task Details** - Inline editing with acceptance criteria
451
150
  - **Dark Mode** - System preference aware
452
- - **Search** - Global search across tasks and docs (Cmd+K)
453
- - **Time Tracking** - Start/stop timers, view history
454
-
455
- ### Configuration Page
456
-
457
- Edit all project settings through the Web UI:
458
-
459
- - **Project Name** - Change project display name
460
- - **Default Assignee** - Set default for new tasks
461
- - **Default Priority** - Low, Medium, High
462
- - **Default Labels** - Comma-separated labels
463
- - **Task Statuses** - Add/remove custom statuses with colors
464
- - **Visible Columns** - Configure Kanban board columns
465
- - **JSON Mode** - Direct config.json editing for advanced users
466
-
467
- ## MCP Server - AI Context Integration
151
+ - **Global Search** - Cmd+K
468
152
 
469
- Knowns includes a Model Context Protocol server that lets AI (Claude Desktop) access your context automatically.
153
+ ## MCP Server (Claude Desktop)
470
154
 
471
- ### Setup
472
-
473
- Add to Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):
155
+ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
474
156
 
475
157
  ```json
476
158
  {
@@ -483,97 +165,61 @@ Add to Claude Desktop config (`~/Library/Application Support/Claude/claude_deskt
483
165
  }
484
166
  ```
485
167
 
486
- ### What It Does
487
-
488
- When you tell Claude: *"Implement the user profile feature"*
489
-
490
- Claude can now:
491
- 1. **Read task**: `knowns task view 42 --plain`
492
- 2. **See linked docs**: `@.knowns/docs/patterns/controller.md`
493
- 3. **Fetch context**: Reads controller pattern automatically
494
- 4. **Implement correctly**: Following your exact patterns
495
-
496
- **No more:**
497
- - "Can you explain your architecture?"
498
- - "What's your naming convention?"
499
- - "How do you structure controllers?"
500
-
501
- **AI already knows** because it reads your docs.
168
+ Claude can now read your tasks and documentation automatically.
502
169
 
503
- ### Available Tools
504
-
505
- The MCP server provides:
506
- - `search_tasks` - Find relevant tasks
507
- - `read_task` - Get full task with linked docs
508
- - `search_docs` - Find documentation
509
- - `read_doc` - Get doc content
510
- - `list_docs` - Browse doc structure
511
-
512
- ### Example Conversation
170
+ ## Project Structure
513
171
 
514
172
  ```
515
- You: "Start working on task 42"
516
-
517
- Claude: [Reads task via MCP]
518
- "I see this task requires implementing auth following the guards
519
- pattern. Let me check the guards documentation..."
520
- [Fetches @.knowns/docs/patterns/guards.md via MCP]
521
- "Got it! I'll implement JWT guard with email verification check
522
- as documented. Starting implementation..."
173
+ .knowns/
174
+ ├── tasks/ # Task markdown files
175
+ ├── docs/ # Documentation
176
+ │ ├── patterns/
177
+ │ ├── guides/
178
+ │ └── architecture/
179
+ └── config.json # Project config
523
180
  ```
524
181
 
525
- **Zero context loss. AI has perfect memory of your project.**
526
-
527
- ## Development
182
+ ## Task Workflow
528
183
 
529
184
  ```bash
530
- # Install dependencies
531
- bun install
185
+ # 1. Take task
186
+ knowns task edit <id> -s in-progress -a @me
532
187
 
533
- # Run in dev mode
534
- bun run dev
188
+ # 2. Start timer
189
+ knowns time start <id>
535
190
 
536
- # Build
537
- bun run build
191
+ # 3. Create plan
192
+ knowns task edit <id> --plan "1. Research\n2. Implement\n3. Test"
538
193
 
539
- # Lint
540
- bun run lint
194
+ # 4. Work & check criteria
195
+ knowns task edit <id> --check-ac 1 --check-ac 2
541
196
 
542
- # Format
543
- bun run format
544
- ```
197
+ # 5. Add notes
198
+ knowns task edit <id> --notes "Implementation complete"
545
199
 
546
- ## Guidelines
200
+ # 6. Stop timer & complete
201
+ knowns time stop
202
+ knowns task edit <id> -s done
203
+ ```
547
204
 
548
- **Core Principle:** Never edit `.md` files directly. Always use CLI commands.
205
+ ## Development
549
206
 
550
207
  ```bash
551
- # ❌ Wrong
552
- vim .knowns/tasks/task-42.md
553
-
554
- # ✅ Right
555
- knowns task edit 42 -d "Updated description"
208
+ bun install
209
+ bun run dev # Dev mode
210
+ bun run build # Build
211
+ bun run lint # Lint
556
212
  ```
557
213
 
558
- See [CLAUDE.md](./CLAUDE.md) for complete guidelines.
559
-
560
- ## Contributing
561
-
562
- Contributions welcome! Please read our contributing guidelines before submitting PRs.
563
-
564
- ## License
565
-
566
- MIT © [Knowns Contributors](./LICENSE)
567
-
568
214
  ## Links
569
215
 
570
- - [npm package](https://www.npmjs.com/package/knowns)
571
- - [GitHub repository](https://github.com/knowns-dev/knowns)
572
- - [Issues](https://github.com/knowns-dev/knowns/issues)
573
- - [Changelog](https://github.com/knowns-dev/knowns/releases)
216
+ - [npm](https://www.npmjs.com/package/knowns)
217
+ - [GitHub](https://github.com/knowns-dev/knowns)
218
+ - [Changelog](./CHANGELOG.md)
574
219
 
575
220
  ---
576
221
 
577
- **Know what your team knows.**
578
-
579
- Built for dev teams who pair with AI and value structured knowledge over tribal knowledge.
222
+ <p align="center">
223
+ <strong>Know what your team knows.</strong><br>
224
+ Built for dev teams who pair with AI.
225
+ </p>