@haposoft/cafekit 0.3.0 → 0.3.2
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 +16 -9
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,21 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
> Spec-Driven Development workflow for AI coding assistants
|
|
4
4
|
|
|
5
|
-
[](https://github.com/haposoft/cafekit)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://claude.ai/code)
|
|
8
8
|
[](https://github.com/google/antigravity)
|
|
9
9
|
|
|
10
10
|
## Overview
|
|
11
11
|
|
|
12
|
-
CafeKit
|
|
12
|
+
CafeKit is a **multi-platform** CLI tool that installs a structured workflow for AI coding assistants. It helps teams move from idea to implementation systematically using natural language commands.
|
|
13
13
|
|
|
14
14
|
**Supported Platforms:**
|
|
15
15
|
| Platform | Status | Installation Path |
|
|
16
16
|
|----------|--------|-------------------|
|
|
17
17
|
| [Claude Code](https://claude.ai/code) | ✅ Supported | `.claude/commands/` |
|
|
18
18
|
| [Antigravity](https://antigravity.google/) | ✅ Supported | `.agent/workflows/` |
|
|
19
|
-
| Cursor | 🔮 Planned |
|
|
19
|
+
| Cursor | 🔮 Planned | 🔮 Planned |
|
|
20
20
|
| GitHub Copilot | 🔮 Planned | TBD |
|
|
21
21
|
| Windsurf | 🔮 Planned | TBD |
|
|
22
22
|
|
|
@@ -50,7 +50,7 @@ CafeKit Spec is a **multi-platform** CLI tool that installs a structured workflo
|
|
|
50
50
|
- Node.js 18+
|
|
51
51
|
- An AI coding assistant (Claude Code or Antigravity)
|
|
52
52
|
|
|
53
|
-
### Install
|
|
53
|
+
### Install Workflow
|
|
54
54
|
|
|
55
55
|
Run in your project root:
|
|
56
56
|
|
|
@@ -105,7 +105,7 @@ Documentation: https://github.com/haposoft/cafekit
|
|
|
105
105
|
|
|
106
106
|
## Workflows
|
|
107
107
|
|
|
108
|
-
CafeKit
|
|
108
|
+
CafeKit provides two workflow categories:
|
|
109
109
|
|
|
110
110
|
### 1. Spec-Driven Development Workflows (`spec-*`)
|
|
111
111
|
|
|
@@ -627,7 +627,7 @@ Planned for future:
|
|
|
627
627
|
|
|
628
628
|
### Q: Can I use multiple AI editors on the same project?
|
|
629
629
|
|
|
630
|
-
A: Yes! You can install CafeKit
|
|
630
|
+
A: Yes! You can install CafeKit for multiple platforms:
|
|
631
631
|
```bash
|
|
632
632
|
npx @haposoft/cafekit
|
|
633
633
|
# Select "Both" when prompted
|
|
@@ -793,6 +793,13 @@ Task #4: Add protected route middleware
|
|
|
793
793
|
|
|
794
794
|
## Changelog
|
|
795
795
|
|
|
796
|
+
### [0.3.1] - 2026-03-13
|
|
797
|
+
|
|
798
|
+
#### Changed
|
|
799
|
+
- **Renamed package** from `@haposoft/cafekit-spec` to `@haposoft/cafekit`
|
|
800
|
+
- Deprecated the old `@haposoft/cafekit-spec` package
|
|
801
|
+
- Updated repository and homepage URLs to point to the official `haposoft` organization
|
|
802
|
+
|
|
796
803
|
### [0.2.2] - 2026-02-25
|
|
797
804
|
|
|
798
805
|
#### Changed
|
|
@@ -845,7 +852,7 @@ Use this checklist after running `npx @haposoft/cafekit --upgrade`:
|
|
|
845
852
|
### [0.1.0] - 2026-02-02
|
|
846
853
|
|
|
847
854
|
#### Added
|
|
848
|
-
- Initial release of CafeKit
|
|
855
|
+
- Initial release of CafeKit workflow
|
|
849
856
|
- Initial spec workflow foundation
|
|
850
857
|
- Zero-config installation via npx
|
|
851
858
|
- Idempotent file copying (safe to re-run)
|
|
@@ -859,8 +866,8 @@ MIT License - See [LICENSE](LICENSE) for details
|
|
|
859
866
|
|
|
860
867
|
---
|
|
861
868
|
|
|
862
|
-
**Made with care by the
|
|
869
|
+
**Made with care by the Haposoft Team**
|
|
863
870
|
|
|
864
871
|
<p align="center">
|
|
865
|
-
<sub>Multi-platform
|
|
872
|
+
<sub>Multi-platform Workflow for AI Coding Assistants</sub>
|
|
866
873
|
</p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haposoft/cafekit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Spec-Driven Development workflow for AI coding assistants. Supports Claude Code and Antigravity with spec-first and code-test-review workflows.",
|
|
5
5
|
"author": "Haposoft <nghialt@haposoft.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,4 +37,4 @@
|
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=18.0.0"
|
|
39
39
|
}
|
|
40
|
-
}
|
|
40
|
+
}
|