@vyuhlabs/dxkit 1.1.0 → 1.2.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/CHANGELOG.md +49 -0
- package/LICENSE +21 -0
- package/package.json +13 -2
- package/templates/.ai/templates/session-checkpoint-template.md +0 -97
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@vyuhlabs/dxkit` are documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [1.2.1] - 2026-04-06
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Add missing `repository`, `homepage`, `bugs`, and `author` fields to
|
|
14
|
+
`package.json` so npmjs.com surfaces a "Repository" link to
|
|
15
|
+
https://github.com/vyuh-labs/dxkit. These fields were accidentally
|
|
16
|
+
omitted from the 1.2.0 publish during the repo split.
|
|
17
|
+
- Include `LICENSE` and `CHANGELOG.md` in the published tarball.
|
|
18
|
+
|
|
19
|
+
## [1.2.0] - 2026-04-06
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- **Repository moved** to its own home at https://github.com/vyuh-labs/dxkit.
|
|
23
|
+
Previously developed inside `vyuh-labs/codespaces-ai-template-v2`. The npm
|
|
24
|
+
package name (`@vyuhlabs/dxkit`) is unchanged — `npx @vyuhlabs/dxkit init`
|
|
25
|
+
works exactly as before.
|
|
26
|
+
- Package is now self-contained: templates live in `src-templates/` inside the
|
|
27
|
+
repo instead of being copied from a parent monorepo at build time.
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
- `LICENSE` (MIT), `CHANGELOG.md`, `CONTRIBUTING.md`.
|
|
31
|
+
- GitHub Actions: `ci.yml` (typecheck + build + pack-dry on push/PR) and
|
|
32
|
+
`publish.yml` (publish to npm on GitHub release).
|
|
33
|
+
|
|
34
|
+
## [1.1.0] - 2026-04-06
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
- Strategic planner and plan executor agents (reports → KPIs → plans → execution).
|
|
38
|
+
- Feature development loop: `feature-planner` and `feature-builder` agents.
|
|
39
|
+
- Pattern-based tasks in the planner; pattern sweep in the plan executor.
|
|
40
|
+
- Stealth mode, dashboard, and expanded command/agent set (26 commands, 12 agents).
|
|
41
|
+
|
|
42
|
+
## [1.0.0] - 2026-03
|
|
43
|
+
|
|
44
|
+
### Added
|
|
45
|
+
- Initial public release of `@vyuhlabs/dxkit`.
|
|
46
|
+
- `init` command with auto-detect for languages and frameworks.
|
|
47
|
+
- Drop-in `.claude/` generation: agents, commands, skills, rules, settings.
|
|
48
|
+
- `--full` mode that also seeds devcontainer, Makefile, CI, and project scripts.
|
|
49
|
+
- `doctor` and `update` commands.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vyuh Labs
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vyuhlabs/dxkit",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "AI-native developer experience toolkit for any repository",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"author": "Vyuh Labs",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/vyuh-labs/dxkit.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/vyuh-labs/dxkit#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/vyuh-labs/dxkit/issues"
|
|
14
|
+
},
|
|
6
15
|
"bin": {
|
|
7
16
|
"vyuh-dxkit": "./dist/index.js"
|
|
8
17
|
},
|
|
@@ -16,7 +25,9 @@
|
|
|
16
25
|
"files": [
|
|
17
26
|
"dist/",
|
|
18
27
|
"templates/",
|
|
19
|
-
"README.md"
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"CHANGELOG.md"
|
|
20
31
|
],
|
|
21
32
|
"scripts": {
|
|
22
33
|
"build": "node scripts/copy-templates.js && tsc",
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
# Session Checkpoint: {DATE} - Session {N}
|
|
2
|
-
|
|
3
|
-
**Developer:** {DEVELOPER_NAME}
|
|
4
|
-
**Date:** {YYYY-MM-DD}
|
|
5
|
-
**Duration:** {X hours}
|
|
6
|
-
|
|
7
|
-
## Session Goal
|
|
8
|
-
{One-line description of what we set out to accomplish}
|
|
9
|
-
|
|
10
|
-
## Accomplished ✅
|
|
11
|
-
- {Specific item 1}
|
|
12
|
-
- {Specific item 2}
|
|
13
|
-
- {Specific item 3}
|
|
14
|
-
|
|
15
|
-
## Files Created/Modified
|
|
16
|
-
|
|
17
|
-
### Created
|
|
18
|
-
- `path/to/new/file1.py` - {brief description}
|
|
19
|
-
- `path/to/new/file2.go` - {brief description}
|
|
20
|
-
|
|
21
|
-
### Modified
|
|
22
|
-
- `path/to/existing/file1.py` - {what changed}
|
|
23
|
-
- `path/to/existing/file2.go` - {what changed}
|
|
24
|
-
|
|
25
|
-
## Key Decisions
|
|
26
|
-
|
|
27
|
-
### Decision 1: {Title}
|
|
28
|
-
**Why:** {Reasoning for this approach}
|
|
29
|
-
**Alternatives considered:** {Other options we discussed}
|
|
30
|
-
**Trade-offs:** {What we gained/lost with this choice}
|
|
31
|
-
|
|
32
|
-
### Decision 2: {Title}
|
|
33
|
-
**Why:** {Reasoning}
|
|
34
|
-
**Alternatives considered:** {Other options}
|
|
35
|
-
**Trade-offs:** {Gains/losses}
|
|
36
|
-
|
|
37
|
-
## Implementation Details
|
|
38
|
-
|
|
39
|
-
### {Component/Feature Name}
|
|
40
|
-
{Brief technical description of how it works, key patterns used, important details}
|
|
41
|
-
|
|
42
|
-
### {Component/Feature Name}
|
|
43
|
-
{Description}
|
|
44
|
-
|
|
45
|
-
## Testing Status
|
|
46
|
-
- [ ] Unit tests added/updated
|
|
47
|
-
- [ ] Integration tests added/updated
|
|
48
|
-
- [ ] Manual testing completed
|
|
49
|
-
- [ ] All tests passing (`make test`)
|
|
50
|
-
- [ ] Code linted and formatted (`make lint && make format`)
|
|
51
|
-
|
|
52
|
-
## Next Session
|
|
53
|
-
|
|
54
|
-
### Goal
|
|
55
|
-
{What to accomplish next - be specific}
|
|
56
|
-
|
|
57
|
-
### Planned Steps
|
|
58
|
-
1. {Specific next step with enough context}
|
|
59
|
-
2. {Specific next step}
|
|
60
|
-
3. {Specific next step}
|
|
61
|
-
|
|
62
|
-
### Context for AI Agent
|
|
63
|
-
```
|
|
64
|
-
We just completed {X}. The implementation is in {files}.
|
|
65
|
-
|
|
66
|
-
Next, we need to {Y} because {reason}.
|
|
67
|
-
|
|
68
|
-
Key context to remember:
|
|
69
|
-
- {Important detail 1}
|
|
70
|
-
- {Important detail 2}
|
|
71
|
-
|
|
72
|
-
Start by {first specific action}.
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
## Blockers / Considerations
|
|
76
|
-
|
|
77
|
-
### Blockers
|
|
78
|
-
- {Any blockers that need resolution}
|
|
79
|
-
|
|
80
|
-
### Technical Debt
|
|
81
|
-
- {Any shortcuts taken that need future attention}
|
|
82
|
-
|
|
83
|
-
### Things to Watch
|
|
84
|
-
- {Potential issues or areas needing careful attention}
|
|
85
|
-
|
|
86
|
-
### Dependencies
|
|
87
|
-
- {External dependencies or waiting on other work}
|
|
88
|
-
|
|
89
|
-
## References
|
|
90
|
-
- Related docs: {links to relevant documentation}
|
|
91
|
-
- Related issues: {GitHub issue links}
|
|
92
|
-
- Related PRs: {Pull request links}
|
|
93
|
-
- External resources: {API docs, articles, etc.}
|
|
94
|
-
|
|
95
|
-
---
|
|
96
|
-
|
|
97
|
-
**Session Summary:** {One paragraph summarizing the session for quick scanning}
|