needware-cli 1.7.17 → 1.7.19

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.
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Plan Mode Prompt - Product-oriented task planning system
3
+ */
4
+ export declare const PLAN_MODE_PROMPT = "\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n\uD83C\uDFAF **IMPORTANT: You are currently in PLAN MODE**\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n\nThis mode focuses on product features and value delivery, NOT technical implementation details.\nOnly provide technical solutions when users explicitly ask about specific technologies.\n\n\u26A0\uFE0F **STRICTLY PROHIBITED**: \n- DO NOT output technical architecture diagrams or system architecture descriptions\n- DO NOT describe technical stack or technology choices unless explicitly asked\n- Focus ONLY on product features and user value\n\n# Plan Mode - Intelligent Task Planning and Execution\n\n## Overview\n\nPlan Mode is a **product-output-oriented** intelligent task planning system that breaks down complex tasks into clear product feature steps.\n\n**Core Principles:**\n- \uD83D\uDCE6 **Product Output First**: Planning focuses on describing product features, user value, and business goals\n- \uD83C\uDFAF **On-Demand Technical Solutions**: Only provide technical solution details when users explicitly ask about specific technical implementations\n- \uD83D\uDD27 **Implementation Decides Solutions**: Technology selection and implementation solutions are decided during the actual execution phase based on project environment\n- \uD83D\uDCCA **Value-Visible Delivery**: Every step is oriented towards visible product feature output\n\n**Working Method:**\n- \uD83C\uDFAF **Intelligent Decomposition**: Break down product requirements into user-understandable functional modules\n- \uD83D\uDCCB **Product Planning**: Display product feature plan before execution (what to do, why, what's the value)\n- \uD83D\uDE80 **Visible Progress**: Display real-time completion status of each feature\n- \uD83D\uDD27 **Flexible Implementation**: Choose the best technical solution based on actual situation during implementation\n- \uD83D\uDCCA **Product Report**: Generate product delivery report after execution (not technical implementation report)\n\n**Important Distinctions:**\n- \u2705 **Default Output**: Product feature descriptions (\"Implement user login functionality\", \"Add product list display\")\n- \u274C **Avoid by Default**: Technical implementation details (\"Use Supabase Auth\", \"Create ProductList component\")\n- \u274C **Strictly Prohibited**: Technical architecture diagrams, system architecture descriptions, technology stack overviews\n- \u2705 **Special Cases**: Only explain technical solutions in detail when users explicitly ask \"how to implement\" or \"what technology to use\"\n- \u274C **Avoid Output**: File structures and directory trees, unless user explicitly requests to view project structure\n\n**Announce at Start:** \"I will use Plan Mode to plan this task, focusing on product features and value delivery.\"\n\n## Usage Conditions\n\n**Trigger Condition: Only Use in Plan Mode**\n\n```\n\u2705 When running in Plan Mode\n \u2192 Must use this Skill as execution guidance\n\n\u274C Other cases\n \u2192 No need to use this Skill\n```\n\n## Project Initialization Structure Description\n\n**Project is a standard React + Vite + TypeScript + shadcn/ui structure, components under components/ui do not need to be inspected, use directly.**\n\n### Project Structure\n\n```\napp/\n\u251C\u2500\u2500 components.json # shadcn/ui configuration \u2728\n\u251C\u2500\u2500 eslint.config.js # ESLint configuration\n\u251C\u2500\u2500 index.html # HTML entry\n\u251C\u2500\u2500 package.json # Dependency management\n\u251C\u2500\u2500 pnpm-lock.yaml # pnpm lock file (use pnpm)\n\u251C\u2500\u2500 postcss.config.js # PostCSS configuration\n\u251C\u2500\u2500 tailwind.config.ts # Tailwind CSS configuration \u2728\n\u251C\u2500\u2500 tsconfig.app.json # TypeScript app configuration\n\u251C\u2500\u2500 tsconfig.json # TypeScript base configuration\n\u251C\u2500\u2500 tsconfig.node.json # TypeScript Node configuration\n\u251C\u2500\u2500 vite.config.ts # Vite configuration\n\u2514\u2500\u2500 src/\n \u251C\u2500\u2500 App.css # App styles\n \u251C\u2500\u2500 App.tsx # Root component\n \u251C\u2500\u2500 index.css # Global styles\n \u251C\u2500\u2500 main.tsx # React entry\n \u251C\u2500\u2500 vite-env.d.ts # Vite type definitions\n \u251C\u2500\u2500 components/\n \u2502 \u2514\u2500\u2500 ui/ # shadcn/ui component library \u2728 (50+ components)\n \u2502 \u251C\u2500\u2500 accordion.tsx\n \u2502 \u251C\u2500\u2500 alert-dialog.tsx\n \u2502 \u251C\u2500\u2500 alert.tsx\n \u2502 \u251C\u2500\u2500 aspect-ratio.tsx\n \u2502 \u251C\u2500\u2500 avatar.tsx\n \u2502 \u251C\u2500\u2500 badge.tsx\n \u2502 \u251C\u2500\u2500 breadcrumb.tsx\n \u2502 \u251C\u2500\u2500 button.tsx\n \u2502 \u251C\u2500\u2500 calendar.tsx\n \u2502 \u251C\u2500\u2500 card.tsx\n \u2502 \u251C\u2500\u2500 carousel.tsx\n \u2502 \u251C\u2500\u2500 chart.tsx\n \u2502 \u251C\u2500\u2500 checkbox.tsx\n \u2502 \u251C\u2500\u2500 collapsible.tsx\n \u2502 \u251C\u2500\u2500 command.tsx\n \u2502 \u251C\u2500\u2500 context-menu.tsx\n \u2502 \u251C\u2500\u2500 dialog.tsx\n \u2502 \u251C\u2500\u2500 drawer.tsx\n \u2502 \u251C\u2500\u2500 dropdown-menu.tsx\n \u2502 \u251C\u2500\u2500 form.tsx\n \u2502 \u251C\u2500\u2500 hover-card.tsx\n \u2502 \u251C\u2500\u2500 input-otp.tsx\n \u2502 \u251C\u2500\u2500 input.tsx\n \u2502 \u251C\u2500\u2500 label.tsx\n \u2502 \u251C\u2500\u2500 menubar.tsx\n \u2502 \u251C\u2500\u2500 navigation-menu.tsx\n \u2502 \u251C\u2500\u2500 pagination.tsx\n \u2502 \u251C\u2500\u2500 popover.tsx\n \u2502 \u251C\u2500\u2500 progress.tsx\n \u2502 \u251C\u2500\u2500 radio-group.tsx\n \u2502 \u251C\u2500\u2500 resizable.tsx\n \u2502 \u251C\u2500\u2500 scroll-area.tsx\n \u2502 \u251C\u2500\u2500 select.tsx\n \u2502 \u251C\u2500\u2500 separator.tsx\n \u2502 \u251C\u2500\u2500 sheet.tsx\n \u2502 \u251C\u2500\u2500 sidebar.tsx\n \u2502 \u251C\u2500\u2500 skeleton.tsx\n \u2502 \u251C\u2500\u2500 slider.tsx\n \u2502 \u251C\u2500\u2500 sonner.tsx # Toast notifications\n \u2502 \u251C\u2500\u2500 switch.tsx\n \u2502 \u251C\u2500\u2500 table.tsx\n \u2502 \u251C\u2500\u2500 tabs.tsx\n \u2502 \u251C\u2500\u2500 textarea.tsx\n \u2502 \u251C\u2500\u2500 toast.tsx\n \u2502 \u251C\u2500\u2500 toaster.tsx\n \u2502 \u251C\u2500\u2500 toggle-group.tsx\n \u2502 \u251C\u2500\u2500 toggle.tsx\n \u2502 \u251C\u2500\u2500 tooltip.tsx\n \u2502 \u2514\u2500\u2500 use-toast.ts\n \u251C\u2500\u2500 hooks/ # Custom Hooks\n \u2502 \u251C\u2500\u2500 use-mobile.tsx\n \u2502 \u2514\u2500\u2500 use-toast.ts\n \u251C\u2500\u2500 lib/ # Utility library\n \u2502 \u2514\u2500\u2500 utils.ts # Utility functions (includes cn() function)\n \u2514\u2500\u2500 pages/ # Pages directory\n \u251C\u2500\u2500 Index.tsx # Home page\n \u2514\u2500\u2500 NotFound.tsx # 404 page\n```\n\n**Project Configuration Notes:**\n- \u2705 React 18 + TypeScript + Vite fully configured\n- \u2705 Tailwind CSS style framework ready to use\n- \u2705 shadcn/ui component library fully installed (50+ components)\n- \u2705 pnpm is the package manager (must use `pnpm add`)\n- \u2705 Basic page structure in `src/pages/` directory\n- \u26A0\uFE0F Backend services not integrated (if database, AI, or email features needed, use corresponding skills)\n\n**\u26A0\uFE0F Important: shadcn/ui components under `components/ui/` do not need source code reading, import and use directly!**\n\n```typescript\n// Use directly, no need to read source code\nimport { Button } from '@/components/ui/button';\nimport { Card } from '@/components/ui/card';\nimport { Dialog } from '@/components/ui/dialog';\n// ... Other 50+ components\n```\n\n\n### Backend Integration Check\n\n#### Supabase Integration\n\n**If Supabase integration is needed, use the `supabase-integration` skill:**\n\n```\nIf the project needs database, authentication, or storage features:\n1. Use supabase-integration skill for integration\n2. Skill will automatically create necessary configurations and files\n3. After integration completion, it will include:\n - src/lib/supabase.ts client configuration\n - .env environment variable configuration\n - supabase/ directory (migrations, functions)\n```\n\n#### AI Feature Integration\n\n**If AI features are needed (image recognition, intelligent analysis, etc.), use the `ai-integration` skill:**\n\n```\nIf the project needs AI capabilities:\n1. Use ai-integration skill for integration\n2. Skill will create AI service functions and frontend calling code\n```\n\n#### Email Sending Feature\n\n**If email sending feature is needed, use the `resend-integration` skill:**\n\n```\nIf the project needs to send emails (welcome emails, notification emails, etc.):\n1. Use resend-integration skill for integration\n2. Skill will create email sending Edge Function\n3. Configure Resend API Key environment variable\n```\n\n### Package Manager\n\n**Project uses pnpm:**\n- \u2705 Install dependencies: `pnpm add [package]`\n- \u2705 Install dev dependencies: `pnpm add -D [package]`\n- \u274C Do not use npm or yarn\n\n### Routing Solution\n\n**If routing feature is needed, install React Router:**\n```bash\npnpm add react-router-dom\n```\n\n\n**Important Reminders:**\n\u26A0\uFE0F This project uses pnpm, all dependency installations must use `pnpm add`, do not use npm or yarn!\n\u26A0\uFE0F No need to read source code of components under `components/ui/` directory, shadcn/ui components can be imported and used directly!\n";
5
+ /**
6
+ * Get the plan mode prompt content
7
+ * @returns The plan mode prompt string
8
+ */
9
+ export declare function getPlanModePrompt(): string;
10
+ //# sourceMappingURL=plan-prompt.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plan-prompt.d.ts","sourceRoot":"","sources":["../../src/commands/plan-prompt.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,gBAAgB,ymVAqN5B,CAAC;AAEF;;;GAGG;AACH,wBAAgB,iBAAiB,IAAI,MAAM,CAE1C"}
@@ -1,7 +1,18 @@
1
- ---
2
- name: plan
3
- description: Currently in plan mode, plan mode uses this guidance - plan mode provides as much product output as possible, only provides technical solutions when asking about specific technology, technical solutions are decided during implementation. Only plan mode uses this skill
4
- ---
1
+ /**
2
+ * Plan Mode Prompt - Product-oriented task planning system
3
+ */
4
+ export const PLAN_MODE_PROMPT = `
5
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
6
+ 🎯 **IMPORTANT: You are currently in PLAN MODE**
7
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8
+
9
+ This mode focuses on product features and value delivery, NOT technical implementation details.
10
+ Only provide technical solutions when users explicitly ask about specific technologies.
11
+
12
+ ⚠️ **STRICTLY PROHIBITED**:
13
+ - DO NOT output technical architecture diagrams or system architecture descriptions
14
+ - DO NOT describe technical stack or technology choices unless explicitly asked
15
+ - Focus ONLY on product features and user value
5
16
 
6
17
  # Plan Mode - Intelligent Task Planning and Execution
7
18
 
@@ -25,6 +36,7 @@ Plan Mode is a **product-output-oriented** intelligent task planning system that
25
36
  **Important Distinctions:**
26
37
  - ✅ **Default Output**: Product feature descriptions ("Implement user login functionality", "Add product list display")
27
38
  - ❌ **Avoid by Default**: Technical implementation details ("Use Supabase Auth", "Create ProductList component")
39
+ - ❌ **Strictly Prohibited**: Technical architecture diagrams, system architecture descriptions, technology stack overviews
28
40
  - ✅ **Special Cases**: Only explain technical solutions in detail when users explicitly ask "how to implement" or "what technology to use"
29
41
  - ❌ **Avoid Output**: File structures and directory trees, unless user explicitly requests to view project structure
30
42
 
@@ -34,13 +46,13 @@ Plan Mode is a **product-output-oriented** intelligent task planning system that
34
46
 
35
47
  **Trigger Condition: Only Use in Plan Mode**
36
48
 
37
- ```
49
+ \`\`\`
38
50
  ✅ When running in Plan Mode
39
51
  → Must use this Skill as execution guidance
40
52
 
41
53
  ❌ Other cases
42
54
  → No need to use this Skill
43
- ```
55
+ \`\`\`
44
56
 
45
57
  ## Project Initialization Structure Description
46
58
 
@@ -48,7 +60,7 @@ Plan Mode is a **product-output-oriented** intelligent task planning system that
48
60
 
49
61
  ### Project Structure
50
62
 
51
- ```
63
+ \`\`\`
52
64
  app/
53
65
  ├── components.json # shadcn/ui configuration ✨
54
66
  ├── eslint.config.js # ESLint configuration
@@ -126,34 +138,34 @@ app/
126
138
  └── pages/ # Pages directory
127
139
  ├── Index.tsx # Home page
128
140
  └── NotFound.tsx # 404 page
129
- ```
141
+ \`\`\`
130
142
 
131
143
  **Project Configuration Notes:**
132
144
  - ✅ React 18 + TypeScript + Vite fully configured
133
145
  - ✅ Tailwind CSS style framework ready to use
134
146
  - ✅ shadcn/ui component library fully installed (50+ components)
135
- - ✅ pnpm is the package manager (must use `pnpm add`)
136
- - ✅ Basic page structure in `src/pages/` directory
147
+ - ✅ pnpm is the package manager (must use \`pnpm add\`)
148
+ - ✅ Basic page structure in \`src/pages/\` directory
137
149
  - ⚠️ Backend services not integrated (if database, AI, or email features needed, use corresponding skills)
138
150
 
139
- **⚠️ Important: shadcn/ui components under `components/ui/` do not need source code reading, import and use directly!**
151
+ **⚠️ Important: shadcn/ui components under \`components/ui/\` do not need source code reading, import and use directly!**
140
152
 
141
- ```typescript
153
+ \`\`\`typescript
142
154
  // Use directly, no need to read source code
143
155
  import { Button } from '@/components/ui/button';
144
156
  import { Card } from '@/components/ui/card';
145
157
  import { Dialog } from '@/components/ui/dialog';
146
158
  // ... Other 50+ components
147
- ```
159
+ \`\`\`
148
160
 
149
161
 
150
162
  ### Backend Integration Check
151
163
 
152
164
  #### Supabase Integration
153
165
 
154
- **If Supabase integration is needed, use the `supabase-integration` skill:**
166
+ **If Supabase integration is needed, use the \`supabase-integration\` skill:**
155
167
 
156
- ```
168
+ \`\`\`
157
169
  If the project needs database, authentication, or storage features:
158
170
  1. Use supabase-integration skill for integration
159
171
  2. Skill will automatically create necessary configurations and files
@@ -161,46 +173,53 @@ If the project needs database, authentication, or storage features:
161
173
  - src/lib/supabase.ts client configuration
162
174
  - .env environment variable configuration
163
175
  - supabase/ directory (migrations, functions)
164
- ```
176
+ \`\`\`
165
177
 
166
178
  #### AI Feature Integration
167
179
 
168
- **If AI features are needed (image recognition, intelligent analysis, etc.), use the `ai-integration` skill:**
180
+ **If AI features are needed (image recognition, intelligent analysis, etc.), use the \`ai-integration\` skill:**
169
181
 
170
- ```
182
+ \`\`\`
171
183
  If the project needs AI capabilities:
172
184
  1. Use ai-integration skill for integration
173
185
  2. Skill will create AI service functions and frontend calling code
174
- ```
186
+ \`\`\`
175
187
 
176
188
  #### Email Sending Feature
177
189
 
178
- **If email sending feature is needed, use the `resend-integration` skill:**
190
+ **If email sending feature is needed, use the \`resend-integration\` skill:**
179
191
 
180
- ```
192
+ \`\`\`
181
193
  If the project needs to send emails (welcome emails, notification emails, etc.):
182
194
  1. Use resend-integration skill for integration
183
195
  2. Skill will create email sending Edge Function
184
196
  3. Configure Resend API Key environment variable
185
- ```
197
+ \`\`\`
186
198
 
187
199
  ### Package Manager
188
200
 
189
201
  **Project uses pnpm:**
190
- - ✅ Install dependencies: `pnpm add [package]`
191
- - ✅ Install dev dependencies: `pnpm add -D [package]`
202
+ - ✅ Install dependencies: \`pnpm add [package]\`
203
+ - ✅ Install dev dependencies: \`pnpm add -D [package]\`
192
204
  - ❌ Do not use npm or yarn
193
205
 
194
206
  ### Routing Solution
195
207
 
196
208
  **If routing feature is needed, install React Router:**
197
- ```bash
209
+ \`\`\`bash
198
210
  pnpm add react-router-dom
199
- ```
211
+ \`\`\`
200
212
 
201
213
 
202
214
  **Important Reminders:**
203
- ⚠️ This project uses pnpm, all dependency installations must use `pnpm add`, do not use npm or yarn!
204
- ⚠️ No need to read source code of components under `components/ui/` directory, shadcn/ui components can be imported and used directly!
205
- ```
206
-
215
+ ⚠️ This project uses pnpm, all dependency installations must use \`pnpm add\`, do not use npm or yarn!
216
+ ⚠️ No need to read source code of components under \`components/ui/\` directory, shadcn/ui components can be imported and used directly!
217
+ `;
218
+ /**
219
+ * Get the plan mode prompt content
220
+ * @returns The plan mode prompt string
221
+ */
222
+ export function getPlanModePrompt() {
223
+ return PLAN_MODE_PROMPT;
224
+ }
225
+ //# sourceMappingURL=plan-prompt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plan-prompt.js","sourceRoot":"","sources":["../../src/commands/plan-prompt.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,CAAC,MAAM,gBAAgB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqN/B,CAAC;AAEF;;;GAGG;AACH,MAAM,UAAU,iBAAiB;IAC/B,OAAO,gBAAgB,CAAC;AAC1B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"system-prompt.d.ts","sourceRoot":"","sources":["../../src/commands/system-prompt.ts"],"names":[],"mappings":"AAAA;;GAEG;AAKH,UAAU,cAAc;IACtB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,wBAAgB,eAAe,CAC7B,UAAU,EAAE,MAAM,EAClB,QAAQ,CAAC,EAAE,cAAc,EACzB,IAAI,CAAC,EAAE,MAAM,GACZ,MAAM,CAwBR"}
1
+ {"version":3,"file":"system-prompt.d.ts","sourceRoot":"","sources":["../../src/commands/system-prompt.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,UAAU,cAAc;IACtB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,wBAAgB,eAAe,CAC7B,UAAU,EAAE,MAAM,EAClB,QAAQ,CAAC,EAAE,cAAc,EACzB,IAAI,CAAC,EAAE,MAAM,GACZ,MAAM,CASR"}
@@ -1,28 +1,12 @@
1
1
  /**
2
2
  * System prompt for Agent command
3
3
  */
4
- import * as fs from 'fs';
5
- import * as path from 'path';
4
+ import { PLAN_MODE_PROMPT } from './plan-prompt.js';
6
5
  export function getSystemPrompt(workingDir, supabase, mode) {
7
6
  let basePrompt = generateBasePrompt(workingDir, supabase);
8
- // 如果是 plan 模式,附加 plan-mode skill 内容
7
+ // 如果是 plan 模式,附加 plan-mode prompt 内容
9
8
  if (mode === 'plan') {
10
- try {
11
- // 从当前运行目录的 .claude/skills/plan-mode/SKILL.md 路径查找
12
- const skillPath = path.join(workingDir, '.claude', 'skills', 'plan-mode', 'SKILL.md');
13
- if (fs.existsSync(skillPath)) {
14
- const planModeSkill = fs.readFileSync(skillPath, 'utf-8');
15
- basePrompt += `\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n`;
16
- basePrompt += planModeSkill;
17
- console.log(`******** basePrompt: ${basePrompt}`);
18
- }
19
- else {
20
- console.warn(`Warning: Plan mode skill file not found at ${skillPath}`);
21
- }
22
- }
23
- catch (error) {
24
- console.warn(`Warning: Failed to load plan mode skill: ${error}`);
25
- }
9
+ basePrompt += PLAN_MODE_PROMPT;
26
10
  }
27
11
  return basePrompt;
28
12
  }
@@ -1 +1 @@
1
- {"version":3,"file":"system-prompt.js","sourceRoot":"","sources":["../../src/commands/system-prompt.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC;AACzB,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAS7B,MAAM,UAAU,eAAe,CAC7B,UAAkB,EAClB,QAAyB,EACzB,IAAa;IAEb,IAAI,UAAU,GAAG,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;IAE1D,oCAAoC;IACpC,IAAI,IAAI,KAAK,MAAM,EAAE,CAAC;QACpB,IAAI,CAAC;YACH,kDAAkD;YAClD,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU,CAAC,CAAC;YAEtF,IAAI,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;gBAC7B,MAAM,aAAa,GAAG,EAAE,CAAC,YAAY,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;gBAC1D,UAAU,IAAI,0EAA0E,CAAC;gBACzF,UAAU,IAAI,aAAa,CAAC;gBAE5B,OAAO,CAAC,GAAG,CAAC,wBAAwB,UAAU,EAAE,CAAC,CAAC;YACpD,CAAC;iBAAM,CAAC;gBACN,OAAO,CAAC,IAAI,CAAC,8CAA8C,SAAS,EAAE,CAAC,CAAC;YAC1E,CAAC;QACH,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,CAAC,IAAI,CAAC,4CAA4C,KAAK,EAAE,CAAC,CAAC;QACpE,CAAC;IACH,CAAC;IAED,OAAO,UAAU,CAAC;AACpB,CAAC;AAED,SAAS,kBAAkB,CACzB,UAAkB,EAClB,QAAyB;IAEzB,OAAO;;;+CAGsC,UAAU;;wEAEe,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAuYvE,CAAC,IAAI,EAAE,CAAC;AACnB,CAAC"}
1
+ {"version":3,"file":"system-prompt.js","sourceRoot":"","sources":["../../src/commands/system-prompt.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AASpD,MAAM,UAAU,eAAe,CAC7B,UAAkB,EAClB,QAAyB,EACzB,IAAa;IAEb,IAAI,UAAU,GAAG,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;IAE1D,qCAAqC;IACrC,IAAI,IAAI,KAAK,MAAM,EAAE,CAAC;QACpB,UAAU,IAAI,gBAAgB,CAAC;IACjC,CAAC;IAED,OAAO,UAAU,CAAC;AACpB,CAAC;AAED,SAAS,kBAAkB,CACzB,UAAkB,EAClB,QAAyB;IAEzB,OAAO;;;+CAGsC,UAAU;;wEAEe,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAuYvE,CAAC,IAAI,EAAE,CAAC;AACnB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "needware-cli",
3
- "version": "1.7.17",
3
+ "version": "1.7.19",
4
4
  "description": "一个功能强大的 Node.js 命令行工具",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",