knowns 0.1.5 → 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/CHANGELOG.md +30 -0
- package/CLAUDE.md +525 -96
- package/README.md +118 -472
- package/dist/index.js +1039 -353
- package/dist/mcp/server.js +7 -2
- package/dist/ui/assets/index-B6wqA_A-.js +152 -0
- package/dist/ui/assets/index-uFwTg_PH.css +1 -0
- package/dist/ui/index.html +2 -1
- package/package.json +16 -22
- package/dist/ui/index.css +0 -3088
- package/dist/ui/main.css +0 -1
- package/dist/ui/main.js +0 -452
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,35 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.6] - 2025-12-27
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Real-time Sync**: CLI/AI changes now sync to Web UI in real-time via WebSocket
|
|
12
|
+
- When AI or CLI modifies tasks/docs, Web UI updates automatically without refresh
|
|
13
|
+
- Added `/api/notify` endpoint for CLI to notify server of changes
|
|
14
|
+
- Tasks and docs pages listen for WebSocket updates
|
|
15
|
+
- **Custom Server Port**: Server port is now saved to config when using `-p` option
|
|
16
|
+
- Example: `knowns browser -p 7000` saves port 7000 to config
|
|
17
|
+
- Notify functions automatically use the saved port for real-time sync
|
|
18
|
+
- **Doc CLI**: Added `--folder` option to `doc create` command for creating docs in nested folders
|
|
19
|
+
- Example: `knowns doc create "Guide" -f guides`
|
|
20
|
+
- **Doc CLI**: Added `--content` and `--append` options to `doc edit` command
|
|
21
|
+
- `-c, --content <text>` - Replace document content
|
|
22
|
+
- `-a, --append <text>` - Append to existing content
|
|
23
|
+
- **Web UI**: MDEditor now supports full-height mode for better editing experience
|
|
24
|
+
- **Web UI**: Create document modal is now larger (90vh) with full editor support
|
|
25
|
+
- **Documentation**: Added comprehensive CLI guide at `guides/knowns-cli-guide.md`
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- **Web UI**: Improved markdown editor layout with flex-based height management
|
|
29
|
+
- **Web UI**: Editor properly fills available space when editing docs
|
|
30
|
+
- **Reference System**: Doc mention regex now matches both `@doc/` and `@docs/` patterns
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- **Web UI**: Fixed Assignee dropdown not working inside modal (Portal container fix)
|
|
34
|
+
- **Web UI**: Fixed editor scroll issues in full-height mode
|
|
35
|
+
- **Web UI**: Fixed create modal form fields not properly sized
|
|
36
|
+
|
|
8
37
|
## [0.1.5] - 2024-12-26
|
|
9
38
|
|
|
10
39
|
### Fixed
|
|
@@ -107,6 +136,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
107
136
|
- CLAUDE.md with complete guidelines for AI agents
|
|
108
137
|
- Example workflows and patterns
|
|
109
138
|
|
|
139
|
+
[0.1.6]: https://github.com/knowns-dev/knowns/compare/v0.1.5...v0.1.6
|
|
110
140
|
[0.1.5]: https://github.com/knowns-dev/knowns/compare/v0.1.3...v0.1.5
|
|
111
141
|
[0.1.3]: https://github.com/knowns-dev/knowns/compare/v0.1.2...v0.1.3
|
|
112
142
|
[0.1.2]: https://github.com/knowns-dev/knowns/compare/v0.1.1...v0.1.2
|