intention-coding 0.1.0 → 0.2.1
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 +262 -0
- package/dist/config.d.ts +1 -0
- package/dist/db/file-storage.d.ts +255 -0
- package/dist/index.cjs +10825 -4643
- package/dist/index.js +10805 -4634
- package/dist/services/api-test/add-tasks-to-plan.d.ts +97 -0
- package/dist/services/api-test/api-test.d.ts +86 -0
- package/dist/services/api-test/batch-update-task-summaries.d.ts +61 -0
- package/dist/services/api-test/execute-test-plan.d.ts +21 -0
- package/dist/services/api-test/export-test-results.d.ts +21 -0
- package/dist/services/api-test/get-test-plans.d.ts +21 -0
- package/dist/services/api-test/index.d.ts +285 -0
- package/dist/services/api-test/test-plan.d.ts +119 -0
- package/dist/services/api-test/update-task.d.ts +147 -0
- package/dist/services/change-summarizer/index.d.ts +39 -0
- package/dist/services/claude-code/index.d.ts +200 -0
- package/dist/services/code-generator/database-manager.d.ts +65 -0
- package/dist/services/code-generator/enhanced-tools.d.ts +392 -0
- package/dist/services/code-generator/export-excel.d.ts +21 -0
- package/dist/services/code-generator/index.d.ts +102 -0
- package/dist/services/code-generator/task-queue.d.ts +114 -0
- package/dist/services/integrated-generator/index.d.ts +107 -0
- package/dist/services/openai-service.d.ts +29 -0
- package/dist/services/pdf2md/index.d.ts +74 -0
- package/dist/services/project-template/index.d.ts +51 -0
- package/dist/services/requirement-analyzer/auto-trigger.d.ts +1 -0
- package/dist/services/requirement-analyzer/index.d.ts +311 -0
- package/dist/services/velocity-template/index.d.ts +334 -0
- package/dist/services/world2md/index.d.ts +69 -0
- package/dist/utils/common.d.ts +1 -1
- package/package.json +12 -7
- package/dist/prompt/tech.d.ts +0 -1
- package/dist/schemas/intent-recognizer.d.ts +0 -33
- package/dist/schemas/types.d.ts +0 -34
- package/dist/schemas/word2md.d.ts +0 -34
- package/dist/tools/architecture-designer.d.ts +0 -12
- package/dist/tools/export-final-document.d.ts +0 -7
- package/dist/tools/index.d.ts +0 -6
- package/dist/tools/intent-recognizer.d.ts +0 -15
- package/dist/tools/requirement-clarifier.d.ts +0 -15
- package/dist/tools/requirement-manager.d.ts +0 -18
- package/dist/tools/utils.d.ts +0 -0
- package/dist/tools/view-requirements-status.d.ts +0 -7
- package/dist/tools/word2md.d.ts +0 -36
- package/dist/utils/mcp-server.d.ts +0 -28
package/dist/tools/word2md.d.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { Word2MdParams } from '../schemas/word2md';
|
|
2
|
-
export declare const word2mdTool: {
|
|
3
|
-
name: string;
|
|
4
|
-
description: string;
|
|
5
|
-
parameters: import("zod").ZodObject<{
|
|
6
|
-
file_path: import("zod").ZodString;
|
|
7
|
-
options: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
8
|
-
skip_images: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
9
|
-
table_style: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["simple", "grid", "pipe"]>>>;
|
|
10
|
-
strict_mode: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
12
|
-
skip_images: boolean;
|
|
13
|
-
table_style: "pipe" | "simple" | "grid";
|
|
14
|
-
strict_mode: boolean;
|
|
15
|
-
}, {
|
|
16
|
-
skip_images?: boolean | undefined;
|
|
17
|
-
table_style?: "pipe" | "simple" | "grid" | undefined;
|
|
18
|
-
strict_mode?: boolean | undefined;
|
|
19
|
-
}>>>;
|
|
20
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
21
|
-
options: {
|
|
22
|
-
skip_images: boolean;
|
|
23
|
-
table_style: "pipe" | "simple" | "grid";
|
|
24
|
-
strict_mode: boolean;
|
|
25
|
-
};
|
|
26
|
-
file_path: string;
|
|
27
|
-
}, {
|
|
28
|
-
file_path: string;
|
|
29
|
-
options?: {
|
|
30
|
-
skip_images?: boolean | undefined;
|
|
31
|
-
table_style?: "pipe" | "simple" | "grid" | undefined;
|
|
32
|
-
strict_mode?: boolean | undefined;
|
|
33
|
-
} | undefined;
|
|
34
|
-
}>;
|
|
35
|
-
execute: (args: Word2MdParams) => Promise<string>;
|
|
36
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { FastMCP } from 'fastmcp';
|
|
2
|
-
/**
|
|
3
|
-
* Main MCP server class that integrates with Task Master
|
|
4
|
-
*/
|
|
5
|
-
declare class TaskMasterMCPServer {
|
|
6
|
-
options: {
|
|
7
|
-
name: string;
|
|
8
|
-
version: `${number}.${number}.${number}`;
|
|
9
|
-
};
|
|
10
|
-
server: FastMCP<undefined>;
|
|
11
|
-
initialized: boolean;
|
|
12
|
-
logger: any;
|
|
13
|
-
constructor();
|
|
14
|
-
/**
|
|
15
|
-
* Initialize the MCP server with necessary tools and routes
|
|
16
|
-
*/
|
|
17
|
-
init(): Promise<this | undefined>;
|
|
18
|
-
asyncManager(server: any, asyncManager: any): void;
|
|
19
|
-
/**
|
|
20
|
-
* Start the MCP server
|
|
21
|
-
*/
|
|
22
|
-
start(): Promise<this>;
|
|
23
|
-
/**
|
|
24
|
-
* Stop the MCP server
|
|
25
|
-
*/
|
|
26
|
-
stop(): Promise<void>;
|
|
27
|
-
}
|
|
28
|
-
export default TaskMasterMCPServer;
|