intention-coding 0.1.0 → 0.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.
Files changed (45) hide show
  1. package/README.md +262 -0
  2. package/dist/config.d.ts +1 -0
  3. package/dist/db/file-storage.d.ts +255 -0
  4. package/dist/index.cjs +10825 -4643
  5. package/dist/index.js +10805 -4634
  6. package/dist/services/api-test/add-tasks-to-plan.d.ts +97 -0
  7. package/dist/services/api-test/api-test.d.ts +86 -0
  8. package/dist/services/api-test/batch-update-task-summaries.d.ts +61 -0
  9. package/dist/services/api-test/execute-test-plan.d.ts +21 -0
  10. package/dist/services/api-test/export-test-results.d.ts +21 -0
  11. package/dist/services/api-test/get-test-plans.d.ts +21 -0
  12. package/dist/services/api-test/index.d.ts +285 -0
  13. package/dist/services/api-test/test-plan.d.ts +119 -0
  14. package/dist/services/api-test/update-task.d.ts +147 -0
  15. package/dist/services/change-summarizer/index.d.ts +39 -0
  16. package/dist/services/claude-code/index.d.ts +200 -0
  17. package/dist/services/code-generator/database-manager.d.ts +65 -0
  18. package/dist/services/code-generator/enhanced-tools.d.ts +392 -0
  19. package/dist/services/code-generator/export-excel.d.ts +21 -0
  20. package/dist/services/code-generator/index.d.ts +102 -0
  21. package/dist/services/code-generator/task-queue.d.ts +114 -0
  22. package/dist/services/integrated-generator/index.d.ts +107 -0
  23. package/dist/services/openai-service.d.ts +29 -0
  24. package/dist/services/pdf2md/index.d.ts +74 -0
  25. package/dist/services/project-template/index.d.ts +51 -0
  26. package/dist/services/requirement-analyzer/auto-trigger.d.ts +1 -0
  27. package/dist/services/requirement-analyzer/index.d.ts +311 -0
  28. package/dist/services/velocity-template/index.d.ts +334 -0
  29. package/dist/services/world2md/index.d.ts +69 -0
  30. package/dist/utils/common.d.ts +1 -1
  31. package/package.json +12 -3
  32. package/dist/prompt/tech.d.ts +0 -1
  33. package/dist/schemas/intent-recognizer.d.ts +0 -33
  34. package/dist/schemas/types.d.ts +0 -34
  35. package/dist/schemas/word2md.d.ts +0 -34
  36. package/dist/tools/architecture-designer.d.ts +0 -12
  37. package/dist/tools/export-final-document.d.ts +0 -7
  38. package/dist/tools/index.d.ts +0 -6
  39. package/dist/tools/intent-recognizer.d.ts +0 -15
  40. package/dist/tools/requirement-clarifier.d.ts +0 -15
  41. package/dist/tools/requirement-manager.d.ts +0 -18
  42. package/dist/tools/utils.d.ts +0 -0
  43. package/dist/tools/view-requirements-status.d.ts +0 -7
  44. package/dist/tools/word2md.d.ts +0 -36
  45. package/dist/utils/mcp-server.d.ts +0 -28
@@ -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;