@tdsoft-tech/aikit 0.1.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/CHANGELOG.md +35 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +4901 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +1000 -0
- package/dist/index.js +4038 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp-server.d.ts +2 -0
- package/dist/mcp-server.js +3496 -0
- package/dist/mcp-server.js.map +1 -0
- package/package.json +62 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- ✨ New command `/analyze-figma` - Tự động phân tích Figma design và extract design tokens
|
|
7
|
+
- Không cần user phải viết prompt dài
|
|
8
|
+
- Tự động gọi @vision agent
|
|
9
|
+
- Tự động extract tất cả design tokens
|
|
10
|
+
- Tự động lưu vào memory/research/figma-analysis.md
|
|
11
|
+
|
|
12
|
+
### Improved
|
|
13
|
+
- 🔄 Cải thiện OpenCode integration - tự động generate commands từ skills và commands
|
|
14
|
+
- 📚 Thêm documentation chi tiết:
|
|
15
|
+
- `QUICK_START_FIGMA.md` - Quick start guide cho Figma workflow
|
|
16
|
+
- `docs/WORKFLOW_FIGMA_TO_CODE.md` - Workflow chi tiết
|
|
17
|
+
- `skills/figma-to-code.md` - Skill chuyên dụng
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- 📝 Cập nhật workflow để user chỉ cần gõ `/analyze-figma <url>` thay vì viết prompt dài
|
|
21
|
+
- 📝 Cải thiện command generation để tự động handle special cases
|
|
22
|
+
|
|
23
|
+
## [0.1.0] - Initial Release
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
- 🎯 Skills Engine - Mandatory workflow enforcement
|
|
27
|
+
- 🤖 Agent Delegation - 7 specialized agents
|
|
28
|
+
- ⚡ 27+ Commands - Slash commands for workflows
|
|
29
|
+
- 🔧 Custom Tools - Extensible tool system
|
|
30
|
+
- 🔌 Plugin System - Event-driven plugins
|
|
31
|
+
- 🧠 Memory Persistence - Cross-session context
|
|
32
|
+
- 🛡️ Anti-Hallucination - 3-layer validation
|
|
33
|
+
- 📿 Beads Integration - Task tracking với quality gates
|
|
34
|
+
- 🌐 MCP Server - OpenCode integration
|
|
35
|
+
|
package/dist/cli.d.ts
ADDED