@tdsoft-tech/aikit 0.1.30 → 0.1.32
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 +14 -0
- package/README.md +28 -17
- package/dist/cli.js +2724 -789
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +314 -4
- package/dist/index.js +1760 -163
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +1339 -143
- package/dist/mcp-server.js.map +1 -1
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
### Breaking Changes ⚠️
|
|
6
|
+
- 🏷️ **Removed Command & Skill Prefixes** - Reverted to simpler command names for better usability:
|
|
7
|
+
- All commands now use simple names without prefixes (e.g., `/plan`, `/implement`, `/fix`)
|
|
8
|
+
- All skills use simple names (e.g., `/test-driven-development`, `/code-review`)
|
|
9
|
+
- Old prefixed names (`/ak_cm_*` and `/ak_sk_*`) are deprecated
|
|
10
|
+
- Documentation updated to use new simpler naming
|
|
11
|
+
|
|
12
|
+
### Migration Guide
|
|
13
|
+
1. Run `aikit install` to generate new unprefixed commands
|
|
14
|
+
2. Use simple command names: `/plan` instead of `/ak_cm_plan`
|
|
15
|
+
3. Use simple skill names: `/test-driven-development` instead of `/ak_sk_test-driven-development`
|
|
16
|
+
|
|
3
17
|
## [0.1.18] - 2026-01-02
|
|
4
18
|
|
|
5
19
|
### Fixed
|
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
3
|
<img src="assets/logo.png" alt="AIKit Logo" width="200"/>
|
|
4
|
+
<a href="https://www.producthunt.com/products/aikit?embed=true&utm_source=badge-featured&utm_medium=badge&utm_campaign=badge-aikit" target="_blank" rel="noopener noreferrer"><img alt="AIKit - Transform Claude Code into a production dev environment. | Product Hunt" width="250" height="54" src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1058608&theme=light&t=1767742744161"></a>
|
|
4
5
|
|
|
5
6
|
# **AIKit**
|
|
6
7
|
|
|
@@ -40,6 +41,16 @@ Perfect for developers who want to:
|
|
|
40
41
|
|
|
41
42
|
---
|
|
42
43
|
|
|
44
|
+
### 🎬 Quick Demo
|
|
45
|
+
|
|
46
|
+
<div align="center">
|
|
47
|
+
|
|
48
|
+
<img src="assets/202601041506.gif" alt="AIKit Demo" width="800"/>
|
|
49
|
+
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
43
54
|
## 🎯 Key Features
|
|
44
55
|
|
|
45
56
|
### 🧠 Specialized Skills
|
|
@@ -99,10 +110,10 @@ Perfect for developers who want to:
|
|
|
99
110
|
/session:start
|
|
100
111
|
```
|
|
101
112
|
|
|
102
|
-
**OpenCode
|
|
113
|
+
**OpenCode:**
|
|
103
114
|
```bash
|
|
104
|
-
/
|
|
105
|
-
/
|
|
115
|
+
/plan /implement /fix
|
|
116
|
+
/test /review /branch
|
|
106
117
|
/session:start
|
|
107
118
|
```
|
|
108
119
|
|
|
@@ -142,7 +153,7 @@ That's it! 🎉 AIKit is now ready to use.
|
|
|
142
153
|
|
|
143
154
|
**For OpenCode:**
|
|
144
155
|
1. **Open OpenCode** and press `/` to see available commands
|
|
145
|
-
2. Try a skill: `/
|
|
156
|
+
2. Try a skill: `/test-driven-development`
|
|
146
157
|
3. Switch agents: Press `<tab>` to cycle through agents
|
|
147
158
|
4. Read the [documentation](https://aikit.tdsoft.tech/docs/intro)
|
|
148
159
|
|
|
@@ -192,7 +203,7 @@ That's it! 🎉 AIKit is now ready to use.
|
|
|
192
203
|
|
|
193
204
|
**OpenCode:**
|
|
194
205
|
```bash
|
|
195
|
-
/
|
|
206
|
+
/plan "Add user authentication with OAuth"
|
|
196
207
|
```
|
|
197
208
|
|
|
198
209
|
### Implementing Features
|
|
@@ -206,8 +217,8 @@ That's it! 🎉 AIKit is now ready to use.
|
|
|
206
217
|
|
|
207
218
|
**OpenCode:**
|
|
208
219
|
```bash
|
|
209
|
-
/
|
|
210
|
-
/
|
|
220
|
+
/implement
|
|
221
|
+
/test-driven-development
|
|
211
222
|
```
|
|
212
223
|
|
|
213
224
|
### Fixing Bugs
|
|
@@ -219,7 +230,7 @@ That's it! 🎉 AIKit is now ready to use.
|
|
|
219
230
|
|
|
220
231
|
**OpenCode:**
|
|
221
232
|
```bash
|
|
222
|
-
/
|
|
233
|
+
/fix "Login fails on Safari"
|
|
223
234
|
```
|
|
224
235
|
|
|
225
236
|
### Code Review
|
|
@@ -231,7 +242,7 @@ That's it! 🎉 AIKit is now ready to use.
|
|
|
231
242
|
|
|
232
243
|
**OpenCode:**
|
|
233
244
|
```bash
|
|
234
|
-
/
|
|
245
|
+
/code-review
|
|
235
246
|
```
|
|
236
247
|
|
|
237
248
|
### One-Shot Automation
|
|
@@ -243,7 +254,7 @@ That's it! 🎉 AIKit is now ready to use.
|
|
|
243
254
|
|
|
244
255
|
**OpenCode:**
|
|
245
256
|
```bash
|
|
246
|
-
/
|
|
257
|
+
/one-shot "Add dark mode toggle to settings"
|
|
247
258
|
```
|
|
248
259
|
|
|
249
260
|
### Creating Branches
|
|
@@ -255,7 +266,7 @@ That's it! 🎉 AIKit is now ready to use.
|
|
|
255
266
|
|
|
256
267
|
**OpenCode:**
|
|
257
268
|
```bash
|
|
258
|
-
/
|
|
269
|
+
/branch "user-oauth"
|
|
259
270
|
```
|
|
260
271
|
|
|
261
272
|
---
|
|
@@ -290,12 +301,13 @@ If you find AIKit useful, please consider supporting us! Your support helps us:
|
|
|
290
301
|
| Support Type | Link | Description |
|
|
291
302
|
|--------------|------|-------------|
|
|
292
303
|
| ⭐ **Star on GitHub** | [Star this repo](https://github.com/tdsoft-technology/aikit) | It's free and helps others discover AIKit! |
|
|
293
|
-
| ☕ **Buy Me a Coffee** | [Support development](https://ko-fi.com) | One-time donation (link coming soon) |
|
|
294
304
|
| 💬 **Join Discussions** | [GitHub Discussions](https://github.com/tdsoft-technology/aikit/discussions) | Ask questions, share ideas |
|
|
305
|
+
| 💰 **Sponsor me at GitHub** | [Sponsor me at GitHub](https://github.com/sponsors/dpnt23) | Support development |
|
|
306
|
+
<div style="font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; border: 1px solid rgb(224, 224, 224); border-radius: 12px; padding: 20px; max-width: 500px; background: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;"><div style="display: flex; align-items: center; gap: 12px; margin-bottom: 12px;"><img alt="AIKit" src="https://ph-files.imgix.net/e2eef671-13f0-4f5c-9dca-7450a9fb29ec.png?auto=format&fit=crop&w=80&h=80" style="width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0;"><div style="flex: 1 1 0%; min-width: 0px;"><h3 style="margin: 0px; font-size: 18px; font-weight: 600; color: rgb(26, 26, 26); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">AIKit</h3><p style="margin: 4px 0px 0px; font-size: 14px; color: rgb(102, 102, 102); line-height: 1.4; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;">Transform Claude Code into a production dev environment.</p></div></div><a href="https://www.producthunt.com/products/aikit?embed=true&utm_source=embed&utm_medium=post_embed" target="_blank" rel="noopener" style="display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; padding: 8px 16px; background: rgb(255, 97, 84); color: rgb(255, 255, 255); text-decoration: none; border-radius: 8px; font-size: 14px; font-weight: 600;">Check it out on Product Hunt →</a></div>
|
|
295
307
|
|
|
296
308
|
---
|
|
297
309
|
|
|
298
|
-
##
|
|
310
|
+
## Changelog
|
|
299
311
|
|
|
300
312
|
See [CHANGELOG.md](CHANGELOG.md) for version history and updates.
|
|
301
313
|
|
|
@@ -307,7 +319,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and updates.
|
|
|
307
319
|
|
|
308
320
|
---
|
|
309
321
|
|
|
310
|
-
##
|
|
322
|
+
## Licensing
|
|
311
323
|
|
|
312
324
|
AIKit is available under a dual-license model:
|
|
313
325
|
|
|
@@ -327,16 +339,15 @@ AIKit is available under a dual-license model:
|
|
|
327
339
|
|
|
328
340
|
---
|
|
329
341
|
|
|
330
|
-
##
|
|
342
|
+
## Acknowledgments
|
|
331
343
|
|
|
332
344
|
Built with ❤️ by the open-source community.
|
|
333
345
|
---
|
|
334
346
|
|
|
335
347
|
<div align="center">
|
|
336
348
|
|
|
337
|
-
|
|
349
|
+
Built for Developers • Open Source Forever
|
|
338
350
|
|
|
339
|
-
[🔝 Back to Top](#-aikit)
|
|
340
351
|
|
|
341
352
|
[Documentation](https://aikit.tdsoft.tech/docs/intro) •
|
|
342
353
|
[Issues](https://github.com/tdsoft-technology/aikit/issues) •
|