knowns 0.9.0 → 0.10.1
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 +25 -15
- package/dist/index.js +64794 -38061
- package/dist/mcp/server.js +48295 -21515
- package/dist/ui/assets/{index-6k0grXES.js → index-CavOnkoC.js} +152 -152
- package/dist/ui/assets/index-DyaL4XLd.css +1 -0
- package/dist/ui/favicon-16.png +0 -0
- package/dist/ui/favicon-32.png +0 -0
- package/dist/ui/index.html +4 -3
- package/package.json +8 -1
- package/dist/ui/assets/index-lS8r6Uin.css +0 -1
package/README.md
CHANGED
|
@@ -92,14 +92,16 @@ knowns browser # Open Web UI
|
|
|
92
92
|
|
|
93
93
|
## Features
|
|
94
94
|
|
|
95
|
-
| Feature
|
|
96
|
-
|
|
|
97
|
-
| **Task Management**
|
|
98
|
-
| **Documentation**
|
|
99
|
-
| **Time Tracking**
|
|
100
|
-
| **Context Linking**
|
|
101
|
-
| **
|
|
102
|
-
| **
|
|
95
|
+
| Feature | Description |
|
|
96
|
+
| -------------------- | -------------------------------------------------- |
|
|
97
|
+
| **Task Management** | Create, track tasks with acceptance criteria |
|
|
98
|
+
| **Documentation** | Nested folders with markdown support |
|
|
99
|
+
| **Time Tracking** | Built-in timers and reports |
|
|
100
|
+
| **Context Linking** | `@task-42` and `@doc/patterns/auth` references |
|
|
101
|
+
| **Template System** | Code generation with Handlebars (`.hbs`) templates |
|
|
102
|
+
| **Import System** | Import docs/templates from git, npm, or local |
|
|
103
|
+
| **AI Integration** | Full MCP Server with AC/plan/notes operations |
|
|
104
|
+
| **Web UI** | Kanban board, doc browser, templates page |
|
|
103
105
|
|
|
104
106
|
---
|
|
105
107
|
|
|
@@ -111,22 +113,30 @@ knowns task create "Title" -d "Description" --ac "Criterion"
|
|
|
111
113
|
knowns task list --plain
|
|
112
114
|
knowns task <id> --plain # View task (shorthand)
|
|
113
115
|
knowns task edit <id> -s in-progress -a @me
|
|
116
|
+
knowns task edit <id> --check-ac 1 # Mark AC as done
|
|
114
117
|
|
|
115
118
|
# Documentation
|
|
116
119
|
knowns doc create "Title" -d "Description" -f "folder"
|
|
117
120
|
knowns doc "doc-name" --plain # View doc (shorthand)
|
|
118
|
-
knowns doc "doc-name" --
|
|
119
|
-
knowns doc "doc-name" --toc --plain # Get table of contents
|
|
121
|
+
knowns doc "doc-name" --smart --plain # Auto-handle small/large docs
|
|
120
122
|
knowns doc "doc-name" --section "2" --plain # Read specific section
|
|
121
123
|
|
|
124
|
+
# Templates
|
|
125
|
+
knowns template list # List available templates
|
|
126
|
+
knowns template run <name> --name "X" # Generate from template
|
|
127
|
+
knowns template create <name> # Create new template
|
|
128
|
+
|
|
129
|
+
# Imports
|
|
130
|
+
knowns import add <name> <source> # Add import
|
|
131
|
+
knowns import sync # Sync all imports
|
|
132
|
+
knowns import list # List imports
|
|
133
|
+
|
|
122
134
|
# Time & Search
|
|
123
135
|
knowns time start <id> && knowns time stop
|
|
124
136
|
knowns search "query" --plain
|
|
125
137
|
|
|
126
138
|
# AI Guidelines
|
|
127
|
-
knowns agents
|
|
128
|
-
knowns agents sync # Sync CLAUDE.md, AGENTS.md (minimal)
|
|
129
|
-
knowns agents sync --full # Sync with full embedded guidelines
|
|
139
|
+
knowns agents sync # Sync CLAUDE.md, AGENTS.md
|
|
130
140
|
knowns agents sync --type mcp # MCP tools format
|
|
131
141
|
```
|
|
132
142
|
|
|
@@ -139,10 +149,10 @@ knowns agents sync --type mcp # MCP tools format
|
|
|
139
149
|
| [Command Reference](./docs/commands.md) | All CLI commands with examples |
|
|
140
150
|
| [Workflow Guide](./docs/workflow.md) | Task lifecycle from creation to completion |
|
|
141
151
|
| [Reference System](./docs/reference-system.md) | How `@doc/` and `@task-` linking works |
|
|
152
|
+
| [Templates](./docs/templates.md) | Code generation with Handlebars |
|
|
142
153
|
| [Web UI](./docs/web-ui.md) | Kanban board and document browser |
|
|
143
|
-
| [MCP Integration](./docs/mcp-integration.md) | Claude Desktop setup
|
|
154
|
+
| [MCP Integration](./docs/mcp-integration.md) | Claude Desktop setup with full MCP tools |
|
|
144
155
|
| [Configuration](./docs/configuration.md) | Project structure and options |
|
|
145
|
-
| [AI Workflow](./docs/ai-workflow.md) | Guide for AI agents |
|
|
146
156
|
| [Developer Guide](./docs/developer-guide.md) | Technical docs for contributors |
|
|
147
157
|
| [Changelog](./CHANGELOG.md) | Version history |
|
|
148
158
|
|