@nick848/sf-cli 1.0.2 → 1.0.4
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 +59 -0
- package/README.md +4 -23
- package/dist/cli/index.js +767 -116
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +746 -113
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +745 -112
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
package/dist/index.d.mts
CHANGED
|
@@ -1534,6 +1534,14 @@ declare class WorkflowEngine {
|
|
|
1534
1534
|
configYaml: string;
|
|
1535
1535
|
devStandards: string;
|
|
1536
1536
|
};
|
|
1537
|
+
/**
|
|
1538
|
+
* 获取规格文件路径
|
|
1539
|
+
*/
|
|
1540
|
+
getSpecFilePath(): string | null;
|
|
1541
|
+
/**
|
|
1542
|
+
* 检查规格文件是否存在
|
|
1543
|
+
*/
|
|
1544
|
+
hasSpecFile(): Promise<boolean>;
|
|
1537
1545
|
/**
|
|
1538
1546
|
* 启动新工作流
|
|
1539
1547
|
*/
|
|
@@ -1772,7 +1780,7 @@ declare function createAgentExecutor(modelService: ModelService, normsManager: N
|
|
|
1772
1780
|
declare const FRONTEND_DEV_AGENT: AgentDefinition;
|
|
1773
1781
|
/**
|
|
1774
1782
|
* 代码审核 Agent
|
|
1775
|
-
*
|
|
1783
|
+
* 负责代码质量检查、安全审查、最佳实践建议、回归测试
|
|
1776
1784
|
*/
|
|
1777
1785
|
declare const CODE_REVIEWER_AGENT: AgentDefinition;
|
|
1778
1786
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1534,6 +1534,14 @@ declare class WorkflowEngine {
|
|
|
1534
1534
|
configYaml: string;
|
|
1535
1535
|
devStandards: string;
|
|
1536
1536
|
};
|
|
1537
|
+
/**
|
|
1538
|
+
* 获取规格文件路径
|
|
1539
|
+
*/
|
|
1540
|
+
getSpecFilePath(): string | null;
|
|
1541
|
+
/**
|
|
1542
|
+
* 检查规格文件是否存在
|
|
1543
|
+
*/
|
|
1544
|
+
hasSpecFile(): Promise<boolean>;
|
|
1537
1545
|
/**
|
|
1538
1546
|
* 启动新工作流
|
|
1539
1547
|
*/
|
|
@@ -1772,7 +1780,7 @@ declare function createAgentExecutor(modelService: ModelService, normsManager: N
|
|
|
1772
1780
|
declare const FRONTEND_DEV_AGENT: AgentDefinition;
|
|
1773
1781
|
/**
|
|
1774
1782
|
* 代码审核 Agent
|
|
1775
|
-
*
|
|
1783
|
+
* 负责代码质量检查、安全审查、最佳实践建议、回归测试
|
|
1776
1784
|
*/
|
|
1777
1785
|
declare const CODE_REVIEWER_AGENT: AgentDefinition;
|
|
1778
1786
|
/**
|