knowns 0.1.5 → 0.1.7
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 +41 -0
- package/CLAUDE.md +527 -96
- package/README.md +118 -472
- package/dist/index.js +1040 -356
- package/dist/mcp/server.js +7 -2
- package/dist/ui/assets/index-BgbLT-Et.css +1 -0
- package/dist/ui/assets/index-DrVgS8n8.js +152 -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,45 @@ 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.7] - 2025-12-27
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Web UI**: Fixed layout breaking with long parent task titles in dropdowns and displays
|
|
12
|
+
- Truncated long titles in parent task selection dropdowns (TasksPage and TaskCreateForm)
|
|
13
|
+
- Changed parent task display from button to div with proper accessibility attributes in TaskDetailModal
|
|
14
|
+
- Added `w-full` constraint to prevent buttons from expanding to 1200px width
|
|
15
|
+
- Implemented proper text truncation with `truncate`, `flex-1`, `min-w-0`, and `overflow-hidden` classes
|
|
16
|
+
- Added title attributes to show full text on hover for truncated titles
|
|
17
|
+
|
|
18
|
+
## [0.1.6] - 2025-12-27
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- **Real-time Sync**: CLI/AI changes now sync to Web UI in real-time via WebSocket
|
|
22
|
+
- When AI or CLI modifies tasks/docs, Web UI updates automatically without refresh
|
|
23
|
+
- Added `/api/notify` endpoint for CLI to notify server of changes
|
|
24
|
+
- Tasks and docs pages listen for WebSocket updates
|
|
25
|
+
- **Custom Server Port**: Server port is now saved to config when using `-p` option
|
|
26
|
+
- Example: `knowns browser -p 7000` saves port 7000 to config
|
|
27
|
+
- Notify functions automatically use the saved port for real-time sync
|
|
28
|
+
- **Doc CLI**: Added `--folder` option to `doc create` command for creating docs in nested folders
|
|
29
|
+
- Example: `knowns doc create "Guide" -f guides`
|
|
30
|
+
- **Doc CLI**: Added `--content` and `--append` options to `doc edit` command
|
|
31
|
+
- `-c, --content <text>` - Replace document content
|
|
32
|
+
- `-a, --append <text>` - Append to existing content
|
|
33
|
+
- **Web UI**: MDEditor now supports full-height mode for better editing experience
|
|
34
|
+
- **Web UI**: Create document modal is now larger (90vh) with full editor support
|
|
35
|
+
- **Documentation**: Added comprehensive CLI guide at `guides/knowns-cli-guide.md`
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
- **Web UI**: Improved markdown editor layout with flex-based height management
|
|
39
|
+
- **Web UI**: Editor properly fills available space when editing docs
|
|
40
|
+
- **Reference System**: Doc mention regex now matches both `@doc/` and `@docs/` patterns
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
- **Web UI**: Fixed Assignee dropdown not working inside modal (Portal container fix)
|
|
44
|
+
- **Web UI**: Fixed editor scroll issues in full-height mode
|
|
45
|
+
- **Web UI**: Fixed create modal form fields not properly sized
|
|
46
|
+
|
|
8
47
|
## [0.1.5] - 2024-12-26
|
|
9
48
|
|
|
10
49
|
### Fixed
|
|
@@ -107,6 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
107
146
|
- CLAUDE.md with complete guidelines for AI agents
|
|
108
147
|
- Example workflows and patterns
|
|
109
148
|
|
|
149
|
+
[0.1.7]: https://github.com/knowns-dev/knowns/compare/v0.1.6...v0.1.7
|
|
150
|
+
[0.1.6]: https://github.com/knowns-dev/knowns/compare/v0.1.5...v0.1.6
|
|
110
151
|
[0.1.5]: https://github.com/knowns-dev/knowns/compare/v0.1.3...v0.1.5
|
|
111
152
|
[0.1.3]: https://github.com/knowns-dev/knowns/compare/v0.1.2...v0.1.3
|
|
112
153
|
[0.1.2]: https://github.com/knowns-dev/knowns/compare/v0.1.1...v0.1.2
|