@vyuhlabs/dxkit 1.2.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/package.json +13 -2
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/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vyuhlabs/dxkit",
|
|
3
|
-
"version": "1.2.
|
|
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",
|