@deimoscloud/coreai 0.1.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 (216) hide show
  1. package/.prettierrc +9 -0
  2. package/AGENT_SPEC.md +347 -0
  3. package/ARCHITECTURE.md +547 -0
  4. package/DRAFT_PRD.md +1440 -0
  5. package/IMPLEMENTATION_PLAN.md +256 -0
  6. package/PRODUCT.md +473 -0
  7. package/README.md +303 -0
  8. package/WORKFLOWS.md +295 -0
  9. package/agents/_templates/ic-engineer.md +185 -0
  10. package/agents/_templates/reviewer.md +182 -0
  11. package/agents/backend-engineer.yaml +72 -0
  12. package/agents/devops-engineer.yaml +72 -0
  13. package/agents/engineering-manager.yaml +70 -0
  14. package/agents/examples/android-engineer.md +302 -0
  15. package/agents/examples/backend-engineer.md +320 -0
  16. package/agents/examples/devops-engineer.md +742 -0
  17. package/agents/examples/engineering-manager.md +469 -0
  18. package/agents/examples/frontend-engineer.md +58 -0
  19. package/agents/examples/product-manager.md +315 -0
  20. package/agents/examples/qa-engineer.md +371 -0
  21. package/agents/examples/security-engineer.md +525 -0
  22. package/agents/examples/solutions-architect.md +351 -0
  23. package/agents/examples/wearos-engineer.md +359 -0
  24. package/agents/frontend-engineer.yaml +72 -0
  25. package/commands/core/check-inbox.md +34 -0
  26. package/commands/core/delegate.md +30 -0
  27. package/commands/core/git-commit.md +144 -0
  28. package/commands/core/pr-create.md +193 -0
  29. package/commands/core/review.md +56 -0
  30. package/commands/core/sprint-status.md +65 -0
  31. package/commands/optional/docs-update.md +200 -0
  32. package/commands/optional/jira-create.md +200 -0
  33. package/commands/optional/jira-transition.md +184 -0
  34. package/commands/optional/worktree-cleanup.md +167 -0
  35. package/commands/optional/worktree-setup.md +110 -0
  36. package/dist/cli/index.js +4037 -0
  37. package/dist/cli/index.js.map +1 -0
  38. package/dist/index.d.ts +2978 -0
  39. package/dist/index.js +3867 -0
  40. package/dist/index.js.map +1 -0
  41. package/eslint.config.js +29 -0
  42. package/jest.config.js +22 -0
  43. package/knowledge-library/README.md +118 -0
  44. package/knowledge-library/android-engineer/context/current.txt +42 -0
  45. package/knowledge-library/android-engineer/control/decisions.txt +9 -0
  46. package/knowledge-library/android-engineer/control/dependencies.txt +19 -0
  47. package/knowledge-library/android-engineer/control/objectives.txt +26 -0
  48. package/knowledge-library/android-engineer/history/.gitkeep +0 -0
  49. package/knowledge-library/android-engineer/inbox/processed/.gitkeep +0 -0
  50. package/knowledge-library/android-engineer/outbox/.gitkeep +0 -0
  51. package/knowledge-library/android-engineer/tech/.gitkeep +0 -0
  52. package/knowledge-library/architecture.txt +61 -0
  53. package/knowledge-library/backend-engineer/context/current.txt +42 -0
  54. package/knowledge-library/backend-engineer/control/decisions.txt +9 -0
  55. package/knowledge-library/backend-engineer/control/dependencies.txt +19 -0
  56. package/knowledge-library/backend-engineer/control/objectives.txt +26 -0
  57. package/knowledge-library/backend-engineer/history/.gitkeep +0 -0
  58. package/knowledge-library/backend-engineer/inbox/processed/.gitkeep +0 -0
  59. package/knowledge-library/backend-engineer/outbox/.gitkeep +0 -0
  60. package/knowledge-library/backend-engineer/tech/.gitkeep +0 -0
  61. package/knowledge-library/context.txt +52 -0
  62. package/knowledge-library/devops-engineer/context/current.txt +42 -0
  63. package/knowledge-library/devops-engineer/control/decisions.txt +9 -0
  64. package/knowledge-library/devops-engineer/control/dependencies.txt +19 -0
  65. package/knowledge-library/devops-engineer/control/objectives.txt +26 -0
  66. package/knowledge-library/devops-engineer/history/.gitkeep +0 -0
  67. package/knowledge-library/devops-engineer/inbox/processed/.gitkeep +0 -0
  68. package/knowledge-library/devops-engineer/outbox/.gitkeep +0 -0
  69. package/knowledge-library/devops-engineer/tech/.gitkeep +0 -0
  70. package/knowledge-library/engineering-manager/context/current.txt +40 -0
  71. package/knowledge-library/engineering-manager/control/decisions.txt +9 -0
  72. package/knowledge-library/engineering-manager/control/objectives.txt +27 -0
  73. package/knowledge-library/engineering-manager/history/.gitkeep +0 -0
  74. package/knowledge-library/engineering-manager/inbox/processed/.gitkeep +0 -0
  75. package/knowledge-library/engineering-manager/outbox/.gitkeep +0 -0
  76. package/knowledge-library/engineering-manager/tech/.gitkeep +0 -0
  77. package/knowledge-library/prd.txt +81 -0
  78. package/knowledge-library/product-manager/context/current.txt +42 -0
  79. package/knowledge-library/product-manager/control/decisions.txt +9 -0
  80. package/knowledge-library/product-manager/control/dependencies.txt +19 -0
  81. package/knowledge-library/product-manager/control/objectives.txt +26 -0
  82. package/knowledge-library/product-manager/history/.gitkeep +0 -0
  83. package/knowledge-library/product-manager/inbox/processed/.gitkeep +0 -0
  84. package/knowledge-library/product-manager/outbox/.gitkeep +0 -0
  85. package/knowledge-library/product-manager/tech/.gitkeep +0 -0
  86. package/knowledge-library/qa-engineer/context/current.txt +42 -0
  87. package/knowledge-library/qa-engineer/control/decisions.txt +9 -0
  88. package/knowledge-library/qa-engineer/control/dependencies.txt +19 -0
  89. package/knowledge-library/qa-engineer/control/objectives.txt +26 -0
  90. package/knowledge-library/qa-engineer/history/.gitkeep +0 -0
  91. package/knowledge-library/qa-engineer/inbox/processed/.gitkeep +0 -0
  92. package/knowledge-library/qa-engineer/outbox/.gitkeep +0 -0
  93. package/knowledge-library/qa-engineer/tech/.gitkeep +0 -0
  94. package/knowledge-library/security-engineer/context/current.txt +42 -0
  95. package/knowledge-library/security-engineer/control/decisions.txt +9 -0
  96. package/knowledge-library/security-engineer/control/dependencies.txt +19 -0
  97. package/knowledge-library/security-engineer/control/objectives.txt +26 -0
  98. package/knowledge-library/security-engineer/history/.gitkeep +0 -0
  99. package/knowledge-library/security-engineer/inbox/processed/.gitkeep +0 -0
  100. package/knowledge-library/security-engineer/outbox/.gitkeep +0 -0
  101. package/knowledge-library/security-engineer/tech/.gitkeep +0 -0
  102. package/knowledge-library/solutions-architect/context/current.txt +42 -0
  103. package/knowledge-library/solutions-architect/control/decisions.txt +9 -0
  104. package/knowledge-library/solutions-architect/control/dependencies.txt +19 -0
  105. package/knowledge-library/solutions-architect/control/objectives.txt +26 -0
  106. package/knowledge-library/solutions-architect/history/.gitkeep +0 -0
  107. package/knowledge-library/solutions-architect/inbox/processed/.gitkeep +0 -0
  108. package/knowledge-library/solutions-architect/outbox/.gitkeep +0 -0
  109. package/knowledge-library/solutions-architect/tech/.gitkeep +0 -0
  110. package/knowledge-library/wearos-engineer/context/current.txt +42 -0
  111. package/knowledge-library/wearos-engineer/control/decisions.txt +9 -0
  112. package/knowledge-library/wearos-engineer/control/dependencies.txt +19 -0
  113. package/knowledge-library/wearos-engineer/control/objectives.txt +26 -0
  114. package/knowledge-library/wearos-engineer/history/.gitkeep +0 -0
  115. package/knowledge-library/wearos-engineer/inbox/processed/.gitkeep +0 -0
  116. package/knowledge-library/wearos-engineer/outbox/.gitkeep +0 -0
  117. package/knowledge-library/wearos-engineer/tech/.gitkeep +0 -0
  118. package/package.json +66 -0
  119. package/schemas/agent.schema.json +171 -0
  120. package/schemas/coreai.config.schema.json +257 -0
  121. package/scripts/add-agent.sh +323 -0
  122. package/scripts/install.sh +354 -0
  123. package/src/adapters/factory.test.ts +386 -0
  124. package/src/adapters/factory.ts +305 -0
  125. package/src/adapters/index.ts +113 -0
  126. package/src/adapters/interfaces.ts +268 -0
  127. package/src/adapters/mcp/client.test.ts +130 -0
  128. package/src/adapters/mcp/client.ts +451 -0
  129. package/src/adapters/mcp/discovery.test.ts +315 -0
  130. package/src/adapters/mcp/discovery.ts +340 -0
  131. package/src/adapters/mcp/index.ts +66 -0
  132. package/src/adapters/mcp/mapper.test.ts +218 -0
  133. package/src/adapters/mcp/mapper.ts +536 -0
  134. package/src/adapters/mcp/registry.test.ts +433 -0
  135. package/src/adapters/mcp/registry.ts +550 -0
  136. package/src/adapters/mcp/types.ts +258 -0
  137. package/src/adapters/native/filesystem.test.ts +350 -0
  138. package/src/adapters/native/filesystem.ts +393 -0
  139. package/src/adapters/native/github.test.ts +173 -0
  140. package/src/adapters/native/github.ts +627 -0
  141. package/src/adapters/native/index.ts +22 -0
  142. package/src/adapters/native/selector.test.ts +224 -0
  143. package/src/adapters/native/selector.ts +150 -0
  144. package/src/adapters/types.ts +270 -0
  145. package/src/agents/compiler.test.ts +399 -0
  146. package/src/agents/compiler.ts +359 -0
  147. package/src/agents/index.ts +36 -0
  148. package/src/agents/loader.test.ts +319 -0
  149. package/src/agents/loader.ts +143 -0
  150. package/src/agents/resolver.test.ts +282 -0
  151. package/src/agents/resolver.ts +262 -0
  152. package/src/agents/types.ts +87 -0
  153. package/src/cache/index.ts +38 -0
  154. package/src/cache/interfaces.ts +283 -0
  155. package/src/cache/manager.test.ts +266 -0
  156. package/src/cache/manager.ts +388 -0
  157. package/src/cache/provider.test.ts +485 -0
  158. package/src/cache/provider.ts +745 -0
  159. package/src/cache/types.test.ts +192 -0
  160. package/src/cache/types.ts +313 -0
  161. package/src/cli/commands/build.test.ts +248 -0
  162. package/src/cli/commands/build.ts +244 -0
  163. package/src/cli/commands/cache.test.ts +221 -0
  164. package/src/cli/commands/cache.ts +229 -0
  165. package/src/cli/commands/index.ts +63 -0
  166. package/src/cli/commands/init.test.ts +173 -0
  167. package/src/cli/commands/init.ts +296 -0
  168. package/src/cli/commands/skills.test.ts +272 -0
  169. package/src/cli/commands/skills.ts +348 -0
  170. package/src/cli/commands/status.test.ts +392 -0
  171. package/src/cli/commands/status.ts +332 -0
  172. package/src/cli/commands/sync.test.ts +213 -0
  173. package/src/cli/commands/sync.ts +251 -0
  174. package/src/cli/commands/validate.test.ts +216 -0
  175. package/src/cli/commands/validate.ts +340 -0
  176. package/src/cli/index.test.ts +190 -0
  177. package/src/cli/index.ts +493 -0
  178. package/src/commands/context.test.ts +163 -0
  179. package/src/commands/context.ts +111 -0
  180. package/src/commands/index.ts +56 -0
  181. package/src/commands/loader.test.ts +273 -0
  182. package/src/commands/loader.ts +355 -0
  183. package/src/commands/registry.test.ts +384 -0
  184. package/src/commands/registry.ts +248 -0
  185. package/src/commands/runner.test.ts +297 -0
  186. package/src/commands/runner.ts +222 -0
  187. package/src/commands/types.ts +361 -0
  188. package/src/config/index.ts +19 -0
  189. package/src/config/loader.test.ts +262 -0
  190. package/src/config/loader.ts +188 -0
  191. package/src/config/types.ts +154 -0
  192. package/src/context/index.ts +14 -0
  193. package/src/context/loader.test.ts +334 -0
  194. package/src/context/loader.ts +357 -0
  195. package/src/index.test.ts +13 -0
  196. package/src/index.ts +244 -0
  197. package/src/knowledge-library/index.ts +44 -0
  198. package/src/knowledge-library/manager.test.ts +536 -0
  199. package/src/knowledge-library/manager.ts +804 -0
  200. package/src/knowledge-library/types.ts +432 -0
  201. package/src/skills/generator.test.ts +602 -0
  202. package/src/skills/generator.ts +491 -0
  203. package/src/skills/index.ts +27 -0
  204. package/src/skills/templates.ts +520 -0
  205. package/src/skills/types.ts +251 -0
  206. package/templates/completion-report.md +72 -0
  207. package/templates/feedback.md +56 -0
  208. package/templates/project-files/CLAUDE.md.template +109 -0
  209. package/templates/project-files/coreai.json.example +47 -0
  210. package/templates/project-files/mcp.json.template +20 -0
  211. package/templates/review-complete.md +64 -0
  212. package/templates/review-request.md +67 -0
  213. package/templates/task-assignment.md +51 -0
  214. package/tsconfig.build.json +4 -0
  215. package/tsconfig.json +26 -0
  216. package/tsup.config.ts +23 -0
@@ -0,0 +1,113 @@
1
+ /**
2
+ * Adapters Module
3
+ *
4
+ * Provides adapter interfaces and factory for integrating with external services.
5
+ */
6
+
7
+ // Types
8
+ export type {
9
+ AdapterType,
10
+ AdapterImplementation,
11
+ AdapterInfo,
12
+ IssueStatus,
13
+ PullRequestStatus,
14
+ ReviewDecision,
15
+ Issue,
16
+ CreateIssueData,
17
+ UpdateIssueData,
18
+ IssueQuery,
19
+ PullRequest,
20
+ CreatePullRequestData,
21
+ PullRequestQuery,
22
+ Review,
23
+ CreateReviewData,
24
+ ReviewComment,
25
+ DocumentationPage,
26
+ DocumentationQuery,
27
+ StateEntry,
28
+ StateOptions,
29
+ AdapterErrorCode,
30
+ } from './types.js';
31
+
32
+ export { AdapterError } from './types.js';
33
+
34
+ // Interfaces
35
+ export type {
36
+ BaseAdapter,
37
+ IssueTrackerAdapter,
38
+ GitProviderAdapter,
39
+ DocumentationProviderAdapter,
40
+ StateProviderAdapter,
41
+ Adapter,
42
+ } from './interfaces.js';
43
+
44
+ // Factory
45
+ export type { AdapterFactoryOptions } from './factory.js';
46
+
47
+ export { AdapterFactory, createAdapterFactory, createAdapterInfo } from './factory.js';
48
+
49
+ // MCP Integration
50
+ export type {
51
+ McpTransportType,
52
+ StdioServerConfig,
53
+ HttpServerConfig,
54
+ McpServerConfig,
55
+ McpServerDefinition,
56
+ McpConfigFile,
57
+ McpServerInfo,
58
+ McpCapabilities,
59
+ McpTool,
60
+ McpResource,
61
+ McpToolResult,
62
+ McpContent,
63
+ McpTextContent,
64
+ McpImageContent,
65
+ McpResourceContent,
66
+ McpErrorCode,
67
+ McpClientOptions,
68
+ DiscoveryOptions,
69
+ ToolMapping,
70
+ ServerMapping,
71
+ ServerEntry,
72
+ ServerStatus,
73
+ RegistryEvents,
74
+ RegistryOptions,
75
+ ServerStatusSummary,
76
+ RegistryStatus,
77
+ } from './mcp/index.js';
78
+
79
+ export {
80
+ McpError,
81
+ McpClient,
82
+ createMockMcpClient,
83
+ discoverMcpServers,
84
+ loadServersFromFile,
85
+ parseServersFromConfig,
86
+ validateServerConfig,
87
+ findMcpConfigFile,
88
+ getDefaultMcpConfigPath,
89
+ findKnownServerMappings,
90
+ autoDiscoverMappings,
91
+ getMappingsForServer,
92
+ groupMappingsByAdapter,
93
+ McpRegistry,
94
+ createRegistry,
95
+ } from './mcp/index.js';
96
+
97
+ // Native Adapters
98
+ export type {
99
+ FilesystemAdapterOptions,
100
+ GitHubAdapterOptions,
101
+ NativeAdapterSelectorOptions,
102
+ NativeAdapterAvailability,
103
+ } from './native/index.js';
104
+
105
+ export {
106
+ FilesystemAdapter,
107
+ createFilesystemAdapter,
108
+ GitHubAdapter,
109
+ createGitHubAdapter,
110
+ registerNativeAdapters,
111
+ checkNativeAdapterAvailability,
112
+ parseGitHubRemote,
113
+ } from './native/index.js';
@@ -0,0 +1,268 @@
1
+ /**
2
+ * Adapter Interfaces
3
+ *
4
+ * Abstract interfaces for integration adapters that can be implemented
5
+ * via MCP servers or native API clients.
6
+ */
7
+
8
+ import type {
9
+ AdapterInfo,
10
+ Issue,
11
+ IssueQuery,
12
+ CreateIssueData,
13
+ UpdateIssueData,
14
+ IssueStatus,
15
+ PullRequest,
16
+ PullRequestQuery,
17
+ CreatePullRequestData,
18
+ Review,
19
+ CreateReviewData,
20
+ DocumentationPage,
21
+ DocumentationQuery,
22
+ StateEntry,
23
+ StateOptions,
24
+ } from './types.js';
25
+
26
+ /**
27
+ * Base interface that all adapters implement
28
+ */
29
+ export interface BaseAdapter {
30
+ /**
31
+ * Get adapter metadata
32
+ */
33
+ getInfo(): AdapterInfo;
34
+
35
+ /**
36
+ * Check if the adapter is connected and available
37
+ */
38
+ isConnected(): boolean;
39
+
40
+ /**
41
+ * Connect to the service (if needed)
42
+ */
43
+ connect(): Promise<void>;
44
+
45
+ /**
46
+ * Disconnect from the service
47
+ */
48
+ disconnect(): Promise<void>;
49
+ }
50
+
51
+ /**
52
+ * Issue Tracker Adapter
53
+ *
54
+ * For integrating with issue tracking systems like Jira, Linear, GitHub Issues, etc.
55
+ */
56
+ export interface IssueTrackerAdapter extends BaseAdapter {
57
+ /**
58
+ * Get a single issue by ID or key
59
+ */
60
+ getIssue(idOrKey: string): Promise<Issue>;
61
+
62
+ /**
63
+ * List issues matching the query
64
+ */
65
+ listIssues(query?: IssueQuery): Promise<Issue[]>;
66
+
67
+ /**
68
+ * Create a new issue
69
+ */
70
+ createIssue(data: CreateIssueData): Promise<Issue>;
71
+
72
+ /**
73
+ * Update an existing issue
74
+ */
75
+ updateIssue(idOrKey: string, data: UpdateIssueData): Promise<Issue>;
76
+
77
+ /**
78
+ * Transition an issue to a new status
79
+ */
80
+ transitionIssue(idOrKey: string, status: IssueStatus): Promise<Issue>;
81
+
82
+ /**
83
+ * Add a comment to an issue
84
+ */
85
+ addComment(idOrKey: string, comment: string): Promise<void>;
86
+
87
+ /**
88
+ * Get available transitions/statuses for an issue
89
+ */
90
+ getTransitions?(idOrKey: string): Promise<IssueStatus[]>;
91
+
92
+ /**
93
+ * Assign an issue to a user
94
+ */
95
+ assignIssue?(idOrKey: string, assignee: string): Promise<Issue>;
96
+
97
+ /**
98
+ * Link two issues together
99
+ */
100
+ linkIssues?(sourceKey: string, targetKey: string, linkType: string): Promise<void>;
101
+ }
102
+
103
+ /**
104
+ * Git Provider Adapter
105
+ *
106
+ * For integrating with Git hosting services like GitHub, GitLab, Bitbucket, etc.
107
+ */
108
+ export interface GitProviderAdapter extends BaseAdapter {
109
+ /**
110
+ * Get a pull request by ID or number
111
+ */
112
+ getPullRequest(idOrNumber: string | number): Promise<PullRequest>;
113
+
114
+ /**
115
+ * List pull requests matching the query
116
+ */
117
+ listPullRequests(query?: PullRequestQuery): Promise<PullRequest[]>;
118
+
119
+ /**
120
+ * Create a new pull request
121
+ */
122
+ createPullRequest(data: CreatePullRequestData): Promise<PullRequest>;
123
+
124
+ /**
125
+ * Update a pull request
126
+ */
127
+ updatePullRequest?(
128
+ idOrNumber: string | number,
129
+ data: Partial<CreatePullRequestData>
130
+ ): Promise<PullRequest>;
131
+
132
+ /**
133
+ * Merge a pull request
134
+ */
135
+ mergePullRequest(
136
+ idOrNumber: string | number,
137
+ options?: { method?: 'merge' | 'squash' | 'rebase'; message?: string }
138
+ ): Promise<void>;
139
+
140
+ /**
141
+ * Close a pull request without merging
142
+ */
143
+ closePullRequest(idOrNumber: string | number): Promise<void>;
144
+
145
+ /**
146
+ * Add a review to a pull request
147
+ */
148
+ addReview(idOrNumber: string | number, review: CreateReviewData): Promise<Review>;
149
+
150
+ /**
151
+ * Get reviews for a pull request
152
+ */
153
+ getReviews?(idOrNumber: string | number): Promise<Review[]>;
154
+
155
+ /**
156
+ * Request reviewers for a pull request
157
+ */
158
+ requestReviewers?(idOrNumber: string | number, reviewers: string[]): Promise<void>;
159
+
160
+ /**
161
+ * Add a comment to a pull request
162
+ */
163
+ addPullRequestComment?(idOrNumber: string | number, comment: string): Promise<void>;
164
+
165
+ /**
166
+ * Get the diff for a pull request
167
+ */
168
+ getPullRequestDiff?(idOrNumber: string | number): Promise<string>;
169
+
170
+ /**
171
+ * Get files changed in a pull request
172
+ */
173
+ getPullRequestFiles?(idOrNumber: string | number): Promise<string[]>;
174
+ }
175
+
176
+ /**
177
+ * Documentation Provider Adapter
178
+ *
179
+ * For integrating with documentation systems like Confluence, Notion, GitHub Wiki, etc.
180
+ */
181
+ export interface DocumentationProviderAdapter extends BaseAdapter {
182
+ /**
183
+ * Get a documentation page by ID
184
+ */
185
+ getPage(id: string): Promise<DocumentationPage>;
186
+
187
+ /**
188
+ * Get page content (may be separate from metadata in some systems)
189
+ */
190
+ getPageContent(id: string): Promise<string>;
191
+
192
+ /**
193
+ * Search for documentation pages
194
+ */
195
+ searchPages(query: DocumentationQuery): Promise<DocumentationPage[]>;
196
+
197
+ /**
198
+ * List pages in a space or parent
199
+ */
200
+ listPages?(parentId?: string): Promise<DocumentationPage[]>;
201
+
202
+ /**
203
+ * Create a new page
204
+ */
205
+ createPage?(title: string, content: string, parentId?: string): Promise<DocumentationPage>;
206
+
207
+ /**
208
+ * Update an existing page
209
+ */
210
+ updatePage?(id: string, title?: string, content?: string): Promise<DocumentationPage>;
211
+ }
212
+
213
+ /**
214
+ * State Provider Adapter
215
+ *
216
+ * For managing local state like KnowledgeLibrary, which may be stored
217
+ * on the filesystem, in a cloud bucket, or in a documentation system.
218
+ */
219
+ export interface StateProviderAdapter extends BaseAdapter {
220
+ /**
221
+ * Read content from a path
222
+ */
223
+ read(path: string, options?: StateOptions): Promise<string>;
224
+
225
+ /**
226
+ * Write content to a path
227
+ */
228
+ write(path: string, content: string, options?: StateOptions): Promise<void>;
229
+
230
+ /**
231
+ * Check if a path exists
232
+ */
233
+ exists(path: string): Promise<boolean>;
234
+
235
+ /**
236
+ * List entries in a directory
237
+ */
238
+ list(path: string): Promise<StateEntry[]>;
239
+
240
+ /**
241
+ * Delete a file or directory
242
+ */
243
+ delete(path: string, options?: StateOptions): Promise<void>;
244
+
245
+ /**
246
+ * Create a directory
247
+ */
248
+ mkdir?(path: string, options?: StateOptions): Promise<void>;
249
+
250
+ /**
251
+ * Move/rename a file or directory
252
+ */
253
+ move?(source: string, destination: string): Promise<void>;
254
+
255
+ /**
256
+ * Copy a file or directory
257
+ */
258
+ copy?(source: string, destination: string): Promise<void>;
259
+ }
260
+
261
+ /**
262
+ * Union type of all adapter types
263
+ */
264
+ export type Adapter =
265
+ | IssueTrackerAdapter
266
+ | GitProviderAdapter
267
+ | DocumentationProviderAdapter
268
+ | StateProviderAdapter;
@@ -0,0 +1,130 @@
1
+ import { McpClient, createMockMcpClient } from './client.js';
2
+ import { McpError } from './types.js';
3
+ import type { McpTool, McpResource } from './types.js';
4
+
5
+ describe('MCP Client', () => {
6
+ describe('McpClient', () => {
7
+ it('should create client with server name and config', () => {
8
+ const client = new McpClient('test-server', {
9
+ transport: 'stdio',
10
+ command: 'node',
11
+ args: ['server.js'],
12
+ });
13
+
14
+ expect(client).toBeInstanceOf(McpClient);
15
+ });
16
+
17
+ it('should not be connected initially', () => {
18
+ const client = new McpClient('test', { transport: 'stdio', command: 'test' });
19
+ expect(client.isConnected()).toBe(false);
20
+ });
21
+
22
+ it('should return null for server info when not connected', () => {
23
+ const client = new McpClient('test', { transport: 'stdio', command: 'test' });
24
+ expect(client.getServerInfo()).toBeNull();
25
+ });
26
+
27
+ it('should throw when calling methods without connection', async () => {
28
+ const client = new McpClient('test', { transport: 'stdio', command: 'test' });
29
+
30
+ await expect(client.listTools()).rejects.toThrow(McpError);
31
+ await expect(client.listResources()).rejects.toThrow(McpError);
32
+ await expect(client.callTool('test')).rejects.toThrow(McpError);
33
+ await expect(client.readResource('test://uri')).rejects.toThrow(McpError);
34
+ });
35
+
36
+ it('should throw for unsupported transport', async () => {
37
+ const client = new McpClient('test', { transport: 'http', url: 'http://example.com' });
38
+
39
+ await expect(client.connect()).rejects.toThrow(McpError);
40
+ await expect(client.connect()).rejects.toThrow('Unsupported transport type');
41
+ });
42
+ });
43
+
44
+ describe('createMockMcpClient', () => {
45
+ it('should create a mock client', () => {
46
+ const client = createMockMcpClient('mock-server');
47
+ expect(client).toBeInstanceOf(McpClient);
48
+ });
49
+
50
+ it('should connect successfully', async () => {
51
+ const client = createMockMcpClient('mock-server');
52
+ await client.connect();
53
+
54
+ expect(client.isConnected()).toBe(true);
55
+ });
56
+
57
+ it('should return server info after connecting', async () => {
58
+ const client = createMockMcpClient('mock-server');
59
+ await client.connect();
60
+
61
+ const info = client.getServerInfo();
62
+ expect(info).not.toBeNull();
63
+ expect(info?.name).toBe('mock-server');
64
+ expect(info?.version).toBe('1.0.0');
65
+ expect(info?.connected).toBe(true);
66
+ });
67
+
68
+ it('should return provided tools', async () => {
69
+ const mockTools: McpTool[] = [
70
+ { name: 'tool1', inputSchema: { type: 'object' } },
71
+ { name: 'tool2', inputSchema: { type: 'object' }, description: 'A tool' },
72
+ ];
73
+
74
+ const client = createMockMcpClient('mock-server', mockTools);
75
+ await client.connect();
76
+
77
+ const tools = await client.listTools();
78
+ expect(tools).toHaveLength(2);
79
+ expect(tools[0].name).toBe('tool1');
80
+ expect(tools[1].name).toBe('tool2');
81
+ expect(tools[1].description).toBe('A tool');
82
+ });
83
+
84
+ it('should return provided resources', async () => {
85
+ const mockResources: McpResource[] = [
86
+ { uri: 'file://test.txt', name: 'Test File' },
87
+ { uri: 'db://records', name: 'Records', description: 'Database records' },
88
+ ];
89
+
90
+ const client = createMockMcpClient('mock-server', [], mockResources);
91
+ await client.connect();
92
+
93
+ const resources = await client.listResources();
94
+ expect(resources).toHaveLength(2);
95
+ expect(resources[0].uri).toBe('file://test.txt');
96
+ expect(resources[1].name).toBe('Records');
97
+ });
98
+
99
+ it('should return empty arrays by default', async () => {
100
+ const client = createMockMcpClient('mock-server');
101
+ await client.connect();
102
+
103
+ const tools = await client.listTools();
104
+ const resources = await client.listResources();
105
+
106
+ expect(tools).toHaveLength(0);
107
+ expect(resources).toHaveLength(0);
108
+ });
109
+ });
110
+
111
+ describe('McpError', () => {
112
+ it('should create error with message and code', () => {
113
+ const error = new McpError('Connection failed', 'connection_failed');
114
+ expect(error.message).toBe('Connection failed');
115
+ expect(error.code).toBe('connection_failed');
116
+ expect(error.name).toBe('McpError');
117
+ });
118
+
119
+ it('should include server name', () => {
120
+ const error = new McpError('Error', 'protocol_error', 'github');
121
+ expect(error.server).toBe('github');
122
+ });
123
+
124
+ it('should include cause', () => {
125
+ const cause = new Error('Original error');
126
+ const error = new McpError('Wrapped', 'network_error', undefined, cause);
127
+ expect(error.cause).toBe(cause);
128
+ });
129
+ });
130
+ });