@heyai-rules/pilo-masterkit 2.1.0 → 2.2.0
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 +77 -58
- package/SLASH_COMMANDS.md +121 -0
- package/package.json +88 -87
- package/src/bin/cli.js +424 -354
- package/src/lib/installer.js +223 -11
package/README.md
CHANGED
|
@@ -1,141 +1,160 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<img src="docs/assets/banner.png" alt="Pilo Masterkit Banner" width="100%">
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
# 🤖 Pilo Masterkit
|
|
5
|
+
|
|
6
6
|
<p><b>The ultimate AI Coding Assistant standardizer and workspace initializer.</b></p>
|
|
7
|
-
|
|
8
|
-
[](https://www.npmjs.com/package/@heyai-rules/pilo-masterkit)
|
|
9
|
-
[](https://github.com/Arter2507/pilo-masterkit/releases/tag/v2.1.0)
|
|
10
|
-
[](https://opensource.org/licenses/Apache-2.0)
|
|
11
7
|
|
|
12
|
-
|
|
8
|
+
[](https://www.npmjs.com/package/@heyai-rules/pilo-masterkit)
|
|
9
|
+
[](https://github.com/Arter2507/pilo-masterkit/releases)
|
|
10
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
11
|
+
|
|
12
|
+
[**English**](#-english) | [**Tiếng Việt**](#-tiếng-việt)
|
|
13
|
+
|
|
13
14
|
</div>
|
|
14
15
|
|
|
15
16
|
---
|
|
16
17
|
|
|
17
|
-
## 🌎 English
|
|
18
|
+
## 🌎 English
|
|
18
19
|
|
|
19
20
|
### 🎯 Project Purpose
|
|
20
21
|
|
|
21
|
-
`Pilo Masterkit`
|
|
22
|
+
`Pilo Masterkit` transforms an ordinary AI Coding Assistant into a disciplined **AI Task Force**. It acts as a comprehensive "brain" for your project — solving context loss, enforcing standardized commands, strict development rules, and high-quality design systems.
|
|
22
23
|
|
|
23
24
|
### ✨ Key Features
|
|
24
25
|
|
|
25
|
-
- **Project Context Initializer**: Creates a clean directory structure (
|
|
26
|
-
- **Dynamic
|
|
27
|
-
- **Interactive CLI
|
|
28
|
-
- **
|
|
29
|
-
- **
|
|
26
|
+
- **Project Context Initializer**: Creates a clean directory structure (`docs/tasks`, `docs/plans`, etc.) ready for the AI.
|
|
27
|
+
- **Dynamic AI Host Files**: Generates `GEMINI.md`, `CLAUDE.md`, or `AGENTS.md` fully localized in your chosen language.
|
|
28
|
+
- **Interactive CLI v2.2**: Step-by-step wizard with product type selection, deployment target, and personalized agent triggers.
|
|
29
|
+
- **Auto-Generated Wiki**: `PILO_WIKI.md` is created automatically with slash commands tailored to your stack and deploy target.
|
|
30
|
+
- **Deployment Target**: Choose between Vercel, GitHub Pages, Docker, or custom — the Agent will optimize accordingly.
|
|
31
|
+
- **Bilingual Support**: Full English and Vietnamese localization for CLI, AI hosts, and documentation.
|
|
30
32
|
|
|
31
33
|
### 🏗️ Workflow Architecture
|
|
32
34
|
|
|
33
35
|
```mermaid
|
|
34
36
|
graph TD
|
|
35
|
-
A[Start: npx @heyai-rules/pilo-masterkit] --> B[Interactive CLI]
|
|
37
|
+
A["Start: npx @heyai-rules/pilo-masterkit"] --> B[Interactive CLI v2.2]
|
|
36
38
|
B --> C{Select Parameters}
|
|
37
|
-
C -->|Language| D[
|
|
38
|
-
C -->|
|
|
39
|
-
C -->|
|
|
40
|
-
|
|
41
|
-
G --> H[
|
|
39
|
+
C -->|Language| D[EN / VI]
|
|
40
|
+
C -->|Product Type| E["Landing Page / Webapp / Cross-Platform / Desktop / Mobile / API / SDK / Research"]
|
|
41
|
+
C -->|Deploy Target| F["Vercel / GitHub Pages / Docker / Custom"]
|
|
42
|
+
C -->|Agent Name| G["Personalized Triggers"]
|
|
43
|
+
D & E & F & G --> H[Generate Workspace + PILO_WIKI.md]
|
|
44
|
+
H --> I["AI Task Force Ready"]
|
|
42
45
|
```
|
|
43
46
|
|
|
44
|
-
### 📸
|
|
47
|
+
### 📸 CLI in Action
|
|
45
48
|
|
|
46
|
-

|
|
47
50
|
|
|
48
|
-
|
|
51
|
+

|
|
49
52
|
|
|
50
|
-
|
|
53
|
+
### 🚀 Quick Start
|
|
51
54
|
|
|
52
55
|
```bash
|
|
56
|
+
# Interactive mode (recommended)
|
|
53
57
|
npx @heyai-rules/pilo-masterkit@latest init
|
|
58
|
+
|
|
59
|
+
# Non-interactive: selective stack
|
|
60
|
+
npx @heyai-rules/pilo-masterkit@latest --stack=typescript,python --ai=claude --locale=en
|
|
61
|
+
|
|
62
|
+
# Non-interactive: full installation
|
|
63
|
+
npx @heyai-rules/pilo-masterkit@latest --profile all
|
|
54
64
|
```
|
|
55
65
|
|
|
56
|
-
|
|
66
|
+
_Note: You can also use `--profile all` for or `--stack <name> --ai <host>` for non-interactive setup._
|
|
57
67
|
|
|
58
68
|
### 🎮 Slash Commands
|
|
59
69
|
|
|
60
70
|
You have access to a rich set of built-in commands for your AI:
|
|
61
71
|
|
|
62
72
|
#### **Core Utilities:**
|
|
63
|
-
|
|
73
|
+
|
|
74
|
+
- `/plan` - Create detailed implementation plan with risk assessment.
|
|
64
75
|
- `/status` - Display agent and project status.
|
|
76
|
+
- `/debug` - Systematic debugging with root cause analysis.
|
|
65
77
|
- `/tdd` - Strict Test-Driven Development protocol.
|
|
66
|
-
- `/
|
|
67
|
-
- `/
|
|
68
|
-
|
|
78
|
+
- `/clean-memory` - Clean AI Agent's memory/context to avoid bloat.
|
|
79
|
+
- `/code-review` - High-standard code review.
|
|
80
|
+
|
|
81
|
+
#### **Development & Deploy:**
|
|
69
82
|
|
|
70
|
-
#### **Development Capabilities:**
|
|
71
83
|
- `/ui-ux-pro-max` - Plan and implement top-tier UI/UX.
|
|
72
|
-
- `/enhance` - Add or update features in existing applications.
|
|
73
84
|
- `/create` - Create new application functions.
|
|
74
|
-
- `/
|
|
85
|
+
- `/enhance` - Add or update features in existing applications.
|
|
86
|
+
- `/deploy` - Deploy to your chosen platform (Vercel, GitHub Pages, Docker...).
|
|
75
87
|
|
|
76
88
|
#### **Code Review & Quality:**
|
|
77
|
-
- `/cpp-review`, `/rust-review`, `/go-review`, `/python-review`, `/kotlin-review` - Deep, language-specific code reviews focusing on idiomatic conventions and safety.
|
|
78
89
|
|
|
79
|
-
|
|
80
|
-
> **View all commands**: For a complete list of 80+ specialized functions, check out our [**Slash Commands Wiki**](./SLASH_COMMANDS.md).
|
|
90
|
+
- `/cpp-review`, `/rust-review`, `/go-review`, `/python-review`, `/kotlin-review`, `/flutter-review` - Deep, language-specific code reviews.
|
|
81
91
|
|
|
92
|
+
> [!IMPORTANT]
|
|
93
|
+
> **View all commands**: Check out [**Slash Commands Wiki**](./SLASH_COMMANDS.md) or your project's auto-generated `PILO_WIKI.md`.
|
|
82
94
|
|
|
83
95
|
---
|
|
84
96
|
|
|
85
|
-
## 🇻🇳
|
|
97
|
+
## 🇻🇳 Tiếng Việt
|
|
86
98
|
|
|
87
99
|
### 🎯 Mục đích dự án
|
|
88
100
|
|
|
89
|
-
`Pilo Masterkit`
|
|
101
|
+
`Pilo Masterkit` biến một AI Coding Assistant thông thường thành **Đội ngũ Đặc nhiệm AI (AI Task Force)** có kỷ luật. Công cụ này thiết lập "não bộ" tập trung ngay tại môi trường phát triển của bạn.
|
|
90
102
|
|
|
91
103
|
### ✨ Tính năng chính
|
|
92
104
|
|
|
93
|
-
- **Môi trường Làm việc Sạch**: Tự động
|
|
94
|
-
- **Tệp Cấu hình Động**: Sinh ra file `GEMINI.md`, `CLAUDE.md` hoặc `AGENTS.md` bản địa hóa 100
|
|
95
|
-
- **Giao diện CLI
|
|
96
|
-
- **
|
|
97
|
-
- **
|
|
105
|
+
- **Môi trường Làm việc Sạch**: Tự động khởi tạo cấu trúc thư mục sẵn sàng làm việc (Docs, Tasks, Plans...).
|
|
106
|
+
- **Tệp Cấu hình Động**: Sinh ra file `GEMINI.md`, `CLAUDE.md` hoặc `AGENTS.md` bản địa hóa 100%.
|
|
107
|
+
- **Giao diện CLI v2.2**: Trình hướng dẫn tương tác với 8 loại sản phẩm, nền tảng triển khai và trigger cá nhân hóa.
|
|
108
|
+
- **Wiki Tự động**: `PILO_WIKI.md` được tạo tự động với các lệnh slash phù hợp Stack và Deploy của bạn.
|
|
109
|
+
- **Nền tảng Triển khai**: Chọn Vercel, GitHub Pages, Docker hoặc Tùy chọn — Agent sẽ tối ưu hóa theo.
|
|
110
|
+
- **Song ngữ 100%**: Toàn bộ CLI, AI hosts và tài liệu hỗ trợ Tiếng Anh và Tiếng Việt.
|
|
98
111
|
|
|
99
112
|
### 🚀 Hướng dẫn nhanh
|
|
100
113
|
|
|
101
|
-
Để cài đặt bộ khung quy tắc:
|
|
102
|
-
|
|
103
114
|
```bash
|
|
115
|
+
# Chế độ tương tác (khuyên dùng)
|
|
104
116
|
npx @heyai-rules/pilo-masterkit@latest init
|
|
117
|
+
|
|
118
|
+
# Phi tương tác: chọn stack
|
|
119
|
+
npx @heyai-rules/pilo-masterkit@latest --stack=typescript,mobile --ai=gemini --locale=vi
|
|
120
|
+
|
|
121
|
+
# Phi tương tác: cài đầy đủ
|
|
122
|
+
npx @heyai-rules/pilo-masterkit@latest --profile all
|
|
105
123
|
```
|
|
106
124
|
|
|
107
|
-
|
|
125
|
+
_Lưu ý: Có thể sử dụng `--profile all` để cài đặt đầy đủ hoặc `--stack <name> --ai <host>` để bỏ qua tương tác._
|
|
108
126
|
|
|
109
127
|
### 🎮 Lệnh Hệ Thống (Slash Commands)
|
|
110
128
|
|
|
111
|
-
Sử dụng sức mạnh tự động hóa qua các lệnh slash cho AI Agent:
|
|
112
|
-
|
|
113
129
|
#### **Quy trình Lõi:**
|
|
130
|
+
|
|
114
131
|
- `/plan` - Lập kế hoạch chi tiết, đánh giá rủi ro trước khi thực thi.
|
|
115
132
|
- `/status` - Kiểm tra trạng thái Agent và tiến độ công việc.
|
|
133
|
+
- `/debug` - Tìm lỗi có hệ thống với bảng nguyên nhân gốc.
|
|
116
134
|
- `/tdd` - Phát triển hướng kiểm thử (Test-Driven Development).
|
|
117
|
-
- `/
|
|
118
|
-
- `/
|
|
135
|
+
- `/clean-memory` - Dọn dẹp bộ nhớ/ngữ cảnh tránh "loãng" bộ nhớ.
|
|
136
|
+
- `/code-review` - Đánh giá mã nguồn chuẩn chất lượng cao.
|
|
119
137
|
|
|
120
|
-
#### **Phát triển
|
|
121
|
-
|
|
122
|
-
- `/
|
|
138
|
+
#### **Phát triển & Triển khai:**
|
|
139
|
+
|
|
140
|
+
- `/ui-ux-pro-max` - Thiết kế giao diện chuẩn mực.
|
|
123
141
|
- `/create` - Khởi tạo luồng ứng dụng mới.
|
|
124
|
-
- `/
|
|
142
|
+
- `/enhance` - Nâng cấp tính năng hiện có.
|
|
143
|
+
- `/deploy` - Triển khai lên nền tảng đã chọn (Vercel, GitHub Pages, Docker...).
|
|
125
144
|
|
|
126
145
|
#### **Review & Tối ưu Mã:**
|
|
127
|
-
|
|
146
|
+
|
|
147
|
+
- `/cpp-review`, `/rust-review`, `/go-review`, `/python-review`, `/kotlin-review`, `/flutter-review` - Review code sâu theo từng đặc thù ngôn ngữ.
|
|
128
148
|
|
|
129
149
|
> [!IMPORTANT]
|
|
130
|
-
> **Toàn bộ hệ thống lệnh**:
|
|
150
|
+
> **Toàn bộ hệ thống lệnh**: Xem [**Slash Commands Wiki**](./SLASH_COMMANDS.md) hoặc file `PILO_WIKI.md` được tạo tự động trong dự án.
|
|
131
151
|
|
|
132
152
|
---
|
|
133
153
|
|
|
134
|
-
|
|
135
154
|
## 🤝 Community & Contributing
|
|
136
155
|
|
|
137
|
-
Dự án này là mã nguồn mở và chúng tôi vinh danh mọi đóng góp để cải thiện hệ sinh thái AI.
|
|
138
|
-
|
|
156
|
+
Dự án này là mã nguồn mở và chúng tôi vinh danh mọi đóng góp để cải thiện hệ sinh thái AI.
|
|
157
|
+
_This project is open-source and we welcome all contributions._
|
|
139
158
|
|
|
140
159
|
- **[Giấy phép / License](LICENSE)**
|
|
141
160
|
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# 🎮 Pilo Masterkit - Slash Commands Wiki
|
|
2
|
+
|
|
3
|
+
Welcome to the **Slash Command** system of Pilo Masterkit. These commands let you control your AI Agent in a structured and efficient way.
|
|
4
|
+
|
|
5
|
+
Chào mừng bạn đến với hệ thống lệnh **Slash Command** của Pilo Masterkit. Đây là bộ công cụ giúp điều khiển AI Agent một cách có hệ thống và hiệu quả nhất.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🏗️ 1. Core Workflows / Quy trình Lõi
|
|
10
|
+
|
|
11
|
+
Every session should start and end with these commands for consistency.
|
|
12
|
+
|
|
13
|
+
| Command | EN Description | VI Mô tả |
|
|
14
|
+
| :--- | :--- | :--- |
|
|
15
|
+
| `/plan` | Analyze requirements, assess risks, create step-by-step plan. | Lập kế hoạch chi tiết, đánh giá rủi ro. |
|
|
16
|
+
| `/status` | Check project progress and Agent state. | Kiểm tra tiến độ dự án và trạng thái Agent. |
|
|
17
|
+
| `/debug` | Systematic root-cause analysis and fix. | Tìm nguyên nhân gốc rễ và sửa lỗi có hệ thống. |
|
|
18
|
+
| `/brainstorm` | Structured ideation for features/strategy. | Brainstorming có cấu trúc cho tính năng/chiến lược. |
|
|
19
|
+
| `/aside` | Quick side-question without losing context. | Hỏi đáp nhanh không làm loãng luồng chính. |
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 💻 2. Feature Development / Phát triển Tính năng
|
|
24
|
+
|
|
25
|
+
| Command | EN Description | VI Mô tả |
|
|
26
|
+
| :--- | :--- | :--- |
|
|
27
|
+
| `/create` | Create a new function, module, or application. | Tạo mới một hàm, module hoặc ứng dụng. |
|
|
28
|
+
| `/enhance` | Add features or optimize existing code. | Nâng cấp tính năng hoặc tối ưu mã nguồn. |
|
|
29
|
+
| `/tdd` | Test-Driven Development (write tests first). | Phát triển hướng kiểm thử (test trước, code sau). |
|
|
30
|
+
| `/ui-ux-pro-max` | Premium GUI design and implementation. | Thiết kế và triển khai giao diện cao cấp. |
|
|
31
|
+
| `/preview` | Start and check local dev server. | Khởi chạy và kiểm tra server cục bộ. |
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## 🚀 3. Deployment / Triển khai
|
|
36
|
+
|
|
37
|
+
Commands optimized for platforms you chose during setup.
|
|
38
|
+
|
|
39
|
+
| Command | EN Description | VI Mô tả |
|
|
40
|
+
| :--- | :--- | :--- |
|
|
41
|
+
| `/deploy` | Deploy to your selected platform (Vercel, GitHub Pages, Docker, Custom). | Triển khai lên nền tảng đã chọn. |
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 🛡️ 4. Quality & Security / Kiểm định & Chất lượng
|
|
46
|
+
|
|
47
|
+
| Command | EN Description | VI Mô tả |
|
|
48
|
+
| :--- | :--- | :--- |
|
|
49
|
+
| `/code-review` | Review code quality, find logic errors, suggest refactoring. | Đánh giá chất lượng, tìm lỗi logic, đề xuất refactor. |
|
|
50
|
+
| `/e2e` | End-to-End testing with Playwright. | Kiểm thử End-to-End với Playwright. |
|
|
51
|
+
| `/verify` | Full project verification before commit/release. | Xác minh tổng thể dự án trước khi commit/release. |
|
|
52
|
+
| `/test` | Run test suite (language-aware). | Chạy bộ kiểm thử (tự nhận dạng ngôn ngữ). |
|
|
53
|
+
| `/rules-distill` | Auto-update rules from working patterns. | Tự động cập nhật quy tắc từ quá trình làm việc. |
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## 🔬 5. Language-Specific Reviews / Review theo Ngôn ngữ
|
|
58
|
+
|
|
59
|
+
Deep code reviews focusing on idiomatic conventions and safety.
|
|
60
|
+
|
|
61
|
+
| Command | Target |
|
|
62
|
+
| :--- | :--- |
|
|
63
|
+
| `/python-review` | Python (PEP 8, type hints, security) |
|
|
64
|
+
| `/rust-review` | Rust (ownership, lifetimes, unsafe) |
|
|
65
|
+
| `/go-review` | Go (concurrency, error handling) |
|
|
66
|
+
| `/cpp-review` | C++ (memory safety, modern C++) |
|
|
67
|
+
| `/kotlin-review` | Kotlin/Java (null safety, coroutines) |
|
|
68
|
+
| `/flutter-review` | Flutter/Dart (widgets, state management) |
|
|
69
|
+
| `/laravel-review` | Laravel PHP (Eloquent, validation) |
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## 🧠 6. Knowledge & Memory / Quản trị Tri thức
|
|
74
|
+
|
|
75
|
+
| Command | EN Description | VI Mô tả |
|
|
76
|
+
| :--- | :--- | :--- |
|
|
77
|
+
| `/clean-memory` | Compress context to avoid memory bloat. | Nén ngữ cảnh tránh "loãng" bộ nhớ. |
|
|
78
|
+
| `/docs` | Look up library documentation. | Tra cứu tài liệu thư viện. |
|
|
79
|
+
| `/init-docs` | Create standard Pilo docs structure. | Tạo cấu trúc tài liệu chuẩn Pilo. |
|
|
80
|
+
| `/save-session` | Save session state for later resumption. | Lưu phiên làm việc để tiếp tục sau. |
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## 🎛️ 7. Advanced Orchestration / Điều phối Nâng cao
|
|
85
|
+
|
|
86
|
+
| Command | EN Description | VI Mô tả |
|
|
87
|
+
| :--- | :--- | :--- |
|
|
88
|
+
| `/orchestrate` | Multi-agent workflow orchestration. | Điều phối luồng làm việc đa Agent. |
|
|
89
|
+
| `/prp-plan` | Large-scale project planning protocol. | Quy trình lập kế hoạch dự án quy mô lớn. |
|
|
90
|
+
| `/prp-implement` | Execute implementation plan with validation. | Thực thi kế hoạch với vòng kiểm tra. |
|
|
91
|
+
| `/santa-loop` | Dual-agent adversarial verification loop. | Vòng lặp kiểm tra chéo giữa 2 Agent. |
|
|
92
|
+
| `/skill-create` | Generate `SKILL.md` from real experience. | Tạo `SKILL.md` từ kinh nghiệm thực tế. |
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## 🔧 8. Build Error Resolvers / Xử lý Lỗi Build
|
|
97
|
+
|
|
98
|
+
| Command | Target |
|
|
99
|
+
| :--- | :--- |
|
|
100
|
+
| `/rust-build` | Fix Rust build errors and borrow checker issues |
|
|
101
|
+
| `/go-build` | Fix Go build errors and `go vet` warnings |
|
|
102
|
+
| `/flutter-build` | Fix Dart analyzer and Flutter build failures |
|
|
103
|
+
| `/gradle-build` | Fix Gradle build errors for Android/KMP |
|
|
104
|
+
| `/kotlin-build` | Fix Kotlin/Gradle compiler issues |
|
|
105
|
+
| `/cpp-build` | Fix C++ build errors, CMake, and linker problems |
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
> [!TIP]
|
|
110
|
+
> **Pro Tip**: The AI Agent reads the corresponding `.md` file in `.agent/workflows/` whenever you call a slash command. You can create your own commands by adding a new `.md` file there!
|
|
111
|
+
>
|
|
112
|
+
> **Mẹo**: Agent sẽ tự động đọc file workflow tương ứng trong `.agent/workflows/` mỗi khi bạn gọi lệnh slash. Bạn có thể tự tạo lệnh mới bằng cách thêm file `.md` vào thư mục đó!
|
|
113
|
+
|
|
114
|
+
> [!NOTE]
|
|
115
|
+
> Your project also includes a **`PILO_WIKI.md`** — an auto-generated wiki with commands tailored specifically to your stack and deploy target.
|
|
116
|
+
>
|
|
117
|
+
> Dự án của bạn cũng bao gồm **`PILO_WIKI.md`** — một wiki tự động sinh với các lệnh phù hợp riêng cho Stack và Deploy của bạn.
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
*© 2026 Pilo Masterkit - Orchestrating the future with discipline and soul.*
|
package/package.json
CHANGED
|
@@ -1,87 +1,88 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@heyai-rules/pilo-masterkit",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Scaffold and install PILO ruleset into a project.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"create",
|
|
7
|
-
"cli",
|
|
8
|
-
"ruleset",
|
|
9
|
-
"agent"
|
|
10
|
-
],
|
|
11
|
-
"homepage": "https://github.com/Arter2507/pilo-masterkit#readme",
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/Arter2507/pilo-masterkit/issues"
|
|
14
|
-
},
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/Arter2507/pilo-masterkit.git"
|
|
18
|
-
},
|
|
19
|
-
"license": "Apache-2.0",
|
|
20
|
-
"author": "Arter",
|
|
21
|
-
"type": "commonjs",
|
|
22
|
-
"main": "src/bin/cli.js",
|
|
23
|
-
"bin": {
|
|
24
|
-
"pilo-masterkit": "src/bin/cli.js",
|
|
25
|
-
"create-pilo-masterkit": "src/bin/cli.js"
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"src",
|
|
29
|
-
".agent",
|
|
30
|
-
"README.md",
|
|
31
|
-
"RELEASE.md",
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"@semantic-release/
|
|
49
|
-
"@semantic-release/
|
|
50
|
-
"@semantic-release/
|
|
51
|
-
"semantic-release": "^
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"@semantic-release/
|
|
61
|
-
"@semantic-release/
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@heyai-rules/pilo-masterkit",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "Scaffold and install PILO ruleset into a project.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"create",
|
|
7
|
+
"cli",
|
|
8
|
+
"ruleset",
|
|
9
|
+
"agent"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/Arter2507/pilo-masterkit#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Arter2507/pilo-masterkit/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/Arter2507/pilo-masterkit.git"
|
|
18
|
+
},
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"author": "Arter",
|
|
21
|
+
"type": "commonjs",
|
|
22
|
+
"main": "src/bin/cli.js",
|
|
23
|
+
"bin": {
|
|
24
|
+
"pilo-masterkit": "src/bin/cli.js",
|
|
25
|
+
"create-pilo-masterkit": "src/bin/cli.js"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"src",
|
|
29
|
+
".agent",
|
|
30
|
+
"README.md",
|
|
31
|
+
"RELEASE.md",
|
|
32
|
+
"SLASH_COMMANDS.md",
|
|
33
|
+
"scripts/release-check.js"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"check": "node --check src/bin/cli.js",
|
|
37
|
+
"pack:dry": "npm pack --dry-run",
|
|
38
|
+
"release:check": "node scripts/release-check.js"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=18.0.0"
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public",
|
|
45
|
+
"registry": "https://registry.npmjs.org/"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
49
|
+
"@semantic-release/git": "^10.0.1",
|
|
50
|
+
"@semantic-release/github": "^11.0.1",
|
|
51
|
+
"@semantic-release/npm": "^12.0.1",
|
|
52
|
+
"semantic-release": "^24.2.3"
|
|
53
|
+
},
|
|
54
|
+
"release": {
|
|
55
|
+
"branches": [
|
|
56
|
+
"main",
|
|
57
|
+
"next"
|
|
58
|
+
],
|
|
59
|
+
"plugins": [
|
|
60
|
+
"@semantic-release/commit-analyzer",
|
|
61
|
+
"@semantic-release/release-notes-generator",
|
|
62
|
+
"@semantic-release/changelog",
|
|
63
|
+
[
|
|
64
|
+
"@semantic-release/npm",
|
|
65
|
+
{
|
|
66
|
+
"npmPublish": true,
|
|
67
|
+
"pkgRoot": "."
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"@semantic-release/github",
|
|
71
|
+
[
|
|
72
|
+
"@semantic-release/git",
|
|
73
|
+
{
|
|
74
|
+
"assets": [
|
|
75
|
+
"package.json",
|
|
76
|
+
"CHANGELOG.md"
|
|
77
|
+
],
|
|
78
|
+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"@clack/prompts": "^1.1.0",
|
|
85
|
+
"fs-extra": "^11.3.4",
|
|
86
|
+
"picocolors": "^1.1.1"
|
|
87
|
+
}
|
|
88
|
+
}
|