kodu 1.1.21 → 2.0.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 (129) hide show
  1. package/AGENTS.md +36 -68
  2. package/README.md +97 -96
  3. package/dist/package.json +1 -2
  4. package/dist/src/app.module.js +0 -8
  5. package/dist/src/app.module.js.map +1 -1
  6. package/dist/src/commands/init/init.command.d.ts +2 -9
  7. package/dist/src/commands/init/init.command.js +15 -241
  8. package/dist/src/commands/init/init.command.js.map +1 -1
  9. package/dist/src/commands/pack/pack.command.d.ts +9 -0
  10. package/dist/src/commands/pack/pack.command.js +72 -3
  11. package/dist/src/commands/pack/pack.command.js.map +1 -1
  12. package/dist/src/core/config/config.schema.d.ts +0 -46
  13. package/dist/src/core/config/config.schema.js +1 -51
  14. package/dist/src/core/config/config.schema.js.map +1 -1
  15. package/dist/src/core/config/config.service.js +2 -2
  16. package/dist/src/core/config/config.service.js.map +1 -1
  17. package/dist/src/core/config/prompt.service.d.ts +1 -4
  18. package/dist/src/core/config/prompt.service.js +4 -17
  19. package/dist/src/core/config/prompt.service.js.map +1 -1
  20. package/dist/src/core/file-system/fs.service.d.ts +1 -0
  21. package/dist/src/core/file-system/fs.service.js +4 -1
  22. package/dist/src/core/file-system/fs.service.js.map +1 -1
  23. package/dist/src/shared/constants.d.ts +0 -4
  24. package/dist/src/shared/constants.js +1 -5
  25. package/dist/src/shared/constants.js.map +1 -1
  26. package/dist/src/shared/git/git.module.js +0 -2
  27. package/dist/src/shared/git/git.module.js.map +1 -1
  28. package/dist/src/shared/git/git.service.d.ts +0 -8
  29. package/dist/src/shared/git/git.service.js +2 -34
  30. package/dist/src/shared/git/git.service.js.map +1 -1
  31. package/dist/src/shared/tokenizer/tokenizer.module.js +0 -2
  32. package/dist/src/shared/tokenizer/tokenizer.module.js.map +1 -1
  33. package/dist/src/shared/tokenizer/tokenizer.service.d.ts +0 -6
  34. package/dist/src/shared/tokenizer/tokenizer.service.js +8 -38
  35. package/dist/src/shared/tokenizer/tokenizer.service.js.map +1 -1
  36. package/dist/tsconfig.build.tsbuildinfo +1 -1
  37. package/kodu.schema.json +0 -139
  38. package/package.json +1 -2
  39. package/skills/kodu-ops/SKILL.md +184 -0
  40. package/src/app.module.ts +0 -8
  41. package/src/commands/init/init.command.ts +15 -310
  42. package/src/commands/pack/pack.command.ts +66 -3
  43. package/src/core/config/config.schema.ts +1 -68
  44. package/src/core/config/config.service.ts +2 -2
  45. package/src/core/config/prompt.service.ts +4 -26
  46. package/src/core/file-system/fs.service.ts +7 -1
  47. package/src/shared/constants.ts +0 -4
  48. package/src/shared/git/git.module.ts +0 -2
  49. package/src/shared/git/git.service.ts +1 -33
  50. package/src/shared/tokenizer/tokenizer.module.ts +0 -2
  51. package/src/shared/tokenizer/tokenizer.service.ts +9 -39
  52. package/.kodu/prompts/.keep +0 -0
  53. package/.kodu/prompts/commit.md +0 -9
  54. package/.kodu/prompts/pack.md +0 -7
  55. package/.kodu/prompts/review-bug.md +0 -6
  56. package/.kodu/prompts/review-security.md +0 -6
  57. package/.kodu/prompts/review-style.md +0 -6
  58. package/.opencode/command/openspec-apply.md +0 -24
  59. package/.opencode/command/openspec-archive.md +0 -27
  60. package/.opencode/command/openspec-proposal.md +0 -29
  61. package/.opencode/skills/kodu-ops/SKILL.md +0 -60
  62. package/dist/src/commands/commit/commit.command.d.ts +0 -18
  63. package/dist/src/commands/commit/commit.command.js +0 -149
  64. package/dist/src/commands/commit/commit.command.js.map +0 -1
  65. package/dist/src/commands/commit/commit.module.d.ts +0 -2
  66. package/dist/src/commands/commit/commit.module.js +0 -25
  67. package/dist/src/commands/commit/commit.module.js.map +0 -1
  68. package/dist/src/commands/ops/ops.command.d.ts +0 -4
  69. package/dist/src/commands/ops/ops.command.js +0 -39
  70. package/dist/src/commands/ops/ops.command.js.map +0 -1
  71. package/dist/src/commands/ops/ops.module.d.ts +0 -2
  72. package/dist/src/commands/ops/ops.module.js +0 -33
  73. package/dist/src/commands/ops/ops.module.js.map +0 -1
  74. package/dist/src/commands/ops/ops.types.d.ts +0 -13
  75. package/dist/src/commands/ops/ops.types.js +0 -12
  76. package/dist/src/commands/ops/ops.types.js.map +0 -1
  77. package/dist/src/commands/ops/ops.utils.d.ts +0 -13
  78. package/dist/src/commands/ops/ops.utils.js +0 -121
  79. package/dist/src/commands/ops/ops.utils.js.map +0 -1
  80. package/dist/src/commands/ops/subcommands/ops-env.command.d.ts +0 -24
  81. package/dist/src/commands/ops/subcommands/ops-env.command.js +0 -156
  82. package/dist/src/commands/ops/subcommands/ops-env.command.js.map +0 -1
  83. package/dist/src/commands/ops/subcommands/ops-routes.command.d.ts +0 -22
  84. package/dist/src/commands/ops/subcommands/ops-routes.command.js +0 -203
  85. package/dist/src/commands/ops/subcommands/ops-routes.command.js.map +0 -1
  86. package/dist/src/commands/ops/subcommands/ops-service.command.d.ts +0 -22
  87. package/dist/src/commands/ops/subcommands/ops-service.command.js +0 -169
  88. package/dist/src/commands/ops/subcommands/ops-service.command.js.map +0 -1
  89. package/dist/src/commands/ops/subcommands/ops-sysinfo.command.d.ts +0 -14
  90. package/dist/src/commands/ops/subcommands/ops-sysinfo.command.js +0 -75
  91. package/dist/src/commands/ops/subcommands/ops-sysinfo.command.js.map +0 -1
  92. package/dist/src/commands/review/review.command.d.ts +0 -26
  93. package/dist/src/commands/review/review.command.js +0 -205
  94. package/dist/src/commands/review/review.command.js.map +0 -1
  95. package/dist/src/commands/review/review.module.d.ts +0 -2
  96. package/dist/src/commands/review/review.module.js +0 -26
  97. package/dist/src/commands/review/review.module.js.map +0 -1
  98. package/dist/src/core/config/default-prompts.d.ts +0 -9
  99. package/dist/src/core/config/default-prompts.js +0 -49
  100. package/dist/src/core/config/default-prompts.js.map +0 -1
  101. package/dist/src/shared/ai/ai.module.d.ts +0 -2
  102. package/dist/src/shared/ai/ai.module.js +0 -23
  103. package/dist/src/shared/ai/ai.module.js.map +0 -1
  104. package/dist/src/shared/ai/ai.service.d.ts +0 -22
  105. package/dist/src/shared/ai/ai.service.js +0 -164
  106. package/dist/src/shared/ai/ai.service.js.map +0 -1
  107. package/dist/src/shared/ssh/ssh.module.d.ts +0 -2
  108. package/dist/src/shared/ssh/ssh.module.js +0 -21
  109. package/dist/src/shared/ssh/ssh.module.js.map +0 -1
  110. package/dist/src/shared/ssh/ssh.service.d.ts +0 -11
  111. package/dist/src/shared/ssh/ssh.service.js +0 -53
  112. package/dist/src/shared/ssh/ssh.service.js.map +0 -1
  113. package/src/commands/commit/commit.command.ts +0 -139
  114. package/src/commands/commit/commit.module.ts +0 -12
  115. package/src/commands/ops/ops.command.ts +0 -30
  116. package/src/commands/ops/ops.module.ts +0 -20
  117. package/src/commands/ops/ops.types.ts +0 -24
  118. package/src/commands/ops/ops.utils.ts +0 -160
  119. package/src/commands/ops/subcommands/ops-env.command.ts +0 -165
  120. package/src/commands/ops/subcommands/ops-routes.command.ts +0 -221
  121. package/src/commands/ops/subcommands/ops-service.command.ts +0 -190
  122. package/src/commands/ops/subcommands/ops-sysinfo.command.ts +0 -77
  123. package/src/commands/review/review.command.ts +0 -199
  124. package/src/commands/review/review.module.ts +0 -13
  125. package/src/core/config/default-prompts.ts +0 -53
  126. package/src/shared/ai/ai.module.ts +0 -10
  127. package/src/shared/ai/ai.service.ts +0 -216
  128. package/src/shared/ssh/ssh.module.ts +0 -8
  129. package/src/shared/ssh/ssh.service.ts +0 -61
@@ -1,342 +1,47 @@
1
1
  import { promises as fs } from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import { Command, CommandRunner } from 'nest-commander';
4
- import { type KoduConfig } from '../../core/config/config.schema';
5
- import {
6
- DEFAULT_COMMIT_PROMPT,
7
- DEFAULT_PACK_PROMPT,
8
- DEFAULT_REVIEW_PROMPTS,
9
- } from '../../core/config/default-prompts';
10
4
  import { UiService } from '../../core/ui/ui.service';
11
- import {
12
- DEFAULT_COMMIT_TOKENS,
13
- DEFAULT_LLM_MODEL,
14
- DEFAULT_REVIEW_TOKENS,
15
- } from '../../shared/constants';
16
5
 
17
- const buildDefaultCommandSettings = () => ({
18
- commit: { modelSettings: { maxOutputTokens: DEFAULT_COMMIT_TOKENS } },
19
- review: { modelSettings: { maxOutputTokens: DEFAULT_REVIEW_TOKENS } },
20
- });
6
+ const GITIGNORE_ENTRY = '.kodu/context.txt';
21
7
 
22
- @Command({ name: 'init', description: 'Initialize Kodu configuration' })
8
+ @Command({ name: 'init', description: 'Add kodu output to .gitignore' })
23
9
  export class InitCommand extends CommandRunner {
24
10
  constructor(private readonly ui: UiService) {
25
11
  super();
26
12
  }
27
13
 
28
14
  async run(): Promise<void> {
29
- const configPath = path.join(process.cwd(), 'kodu.json');
30
-
31
- const defaultLlmConfig = {
32
- model: `openai/${DEFAULT_LLM_MODEL}`,
33
- apiKeyEnv: 'OPENAI_API_KEY',
34
- };
35
-
36
- const defaultConfig: KoduConfig = {
37
- $schema:
38
- 'https://raw.githubusercontent.com/uxname/kodu/refs/heads/master/kodu.schema.json',
39
- llm: defaultLlmConfig,
40
- ops: {
41
- servers: {
42
- dev: {
43
- host: 'example.com',
44
- port: 22,
45
- user: 'ubuntu',
46
- sshKeyPath: '~/.ssh/id_rsa',
47
- description: 'Example AgentOps server',
48
- paths: {
49
- apps: '/var/agent-apps',
50
- caddy: '/var/agent-apps/caddy',
51
- },
52
- },
53
- },
54
- },
55
- cleaner: {
56
- whitelist: ['//!'],
57
- keepJSDoc: true,
58
- useGitignore: true,
59
- ignore: [],
60
- },
61
- packer: {
62
- ignore: [
63
- 'package-lock.json',
64
- 'yarn.lock',
65
- 'pnpm-lock.yaml',
66
- '.git',
67
- '.kodu',
68
- 'node_modules',
69
- 'dist',
70
- 'coverage',
71
- ],
72
- useGitignore: true,
73
- contentBasedBinaryDetection: false,
74
- },
75
- };
76
-
77
- const useAi = await this.ui.promptConfirm({
78
- message: 'Will you use AI functions?',
79
- default: true,
80
- });
81
-
82
- let llmConfig: KoduConfig['llm'] | undefined;
83
- if (useAi) {
84
- const useCustomModel = await this.ui.promptConfirm({
85
- message: 'Use your own model?',
86
- default: false,
87
- });
88
-
89
- let model: string;
90
- if (useCustomModel) {
91
- model = await this.ui.promptInput({
92
- message:
93
- 'Enter model in format provider/model-name (e.g., openai/gpt-4o):',
94
- default: defaultLlmConfig.model,
95
- validate: (input) => {
96
- if (!input.includes('/')) {
97
- return 'Model must be in format provider/model-name';
98
- }
99
- return true;
100
- },
101
- });
102
- } else {
103
- model = await this.ui.promptSelect<string>(
104
- this.buildModelQuestion(defaultLlmConfig.model),
105
- );
106
- }
107
-
108
- llmConfig = {
109
- model,
110
- apiKeyEnv: defaultLlmConfig.apiKeyEnv,
111
- commands: buildDefaultCommandSettings(),
112
- };
113
- }
114
-
115
- const extendIgnore = await this.ui.promptConfirm({
116
- message: 'Modify standard ignore list?',
117
- default: false,
118
- });
119
-
120
- const ignoreList = extendIgnore
121
- ? await this.askIgnoreList(defaultConfig.packer.ignore)
122
- : defaultConfig.packer.ignore;
123
-
124
- const additionalWhitelist = await this.ui.promptInput({
125
- message:
126
- 'Additional whitelist prefixes (comma-separated, empty - keep default):',
127
- default: '',
128
- });
129
-
130
- const whitelist = this.mergeWhitelist(
131
- defaultConfig.cleaner.whitelist,
132
- additionalWhitelist,
133
- );
134
-
135
- const promptPaths = this.buildPromptPaths();
136
-
137
- const configToSave: KoduConfig = {
138
- $schema: defaultConfig.$schema,
139
- ...(llmConfig && { llm: llmConfig }),
140
- cleaner: {
141
- whitelist,
142
- keepJSDoc: defaultConfig.cleaner.keepJSDoc,
143
- useGitignore: defaultConfig.cleaner.useGitignore,
144
- ignore: defaultConfig.cleaner.ignore,
145
- },
146
- packer: {
147
- ignore: ignoreList,
148
- useGitignore: defaultConfig.packer.useGitignore,
149
- contentBasedBinaryDetection:
150
- defaultConfig.packer.contentBasedBinaryDetection,
151
- },
152
- ops: defaultConfig.ops,
153
- prompts: {
154
- review: {
155
- bug: promptPaths.review.bug,
156
- style: promptPaths.review.style,
157
- security: promptPaths.review.security,
158
- },
159
- commit: promptPaths.commit,
160
- pack: promptPaths.pack,
161
- },
162
- };
163
-
164
- await this.writeConfig(configPath, configToSave);
165
- await this.ensurePromptFiles(promptPaths);
166
- await this.ensureGitignore();
167
-
168
- this.ui.log.success('Kodu configuration created.');
169
- if (useAi) {
170
- this.ui.log.info('🎉 Kodu initialized! Run `kodu pack` to continue.');
171
- } else {
172
- this.ui.log.info('🎉 Kodu initialized! Available commands: pack, clean.');
173
- this.ui.log.info(
174
- 'To use AI functions (review, commit) add llm section to kodu.json.',
175
- );
176
- }
177
- }
178
-
179
- private buildModelQuestion(defaultModel: string) {
180
- return {
181
- message: 'Select AI model',
182
- choices: [
183
- {
184
- name: 'OpenAI GPT-4o (recommended)',
185
- value: `openai/${DEFAULT_LLM_MODEL}`,
186
- },
187
- { name: 'OpenAI GPT-4o Mini', value: 'openai/gpt-4o-mini' },
188
- { name: 'OpenAI GPT-4o', value: 'openai/gpt-4o' },
189
- {
190
- name: 'Anthropic Claude 3.5 Sonnet',
191
- value: 'anthropic/claude-3-5-sonnet-20241022',
192
- },
193
- { name: 'Google Gemini 2.5 Flash', value: 'google/gemini-2.5-flash' },
194
- ],
195
- default: defaultModel,
196
- };
197
- }
198
-
199
- private async askIgnoreList(defaultIgnore: string[]): Promise<string[]> {
200
- const answer = await this.ui.promptInput({
201
- message: 'Specify ignore patterns (comma-separated)',
202
- default: defaultIgnore.join(', '),
203
- });
204
-
205
- return answer
206
- .split(',')
207
- .map((item) => item.trim())
208
- .filter((item) => item.length > 0);
209
- }
210
-
211
- private mergeWhitelist(defaultWhitelist: string[], extra: string): string[] {
212
- if (!extra.trim()) {
213
- return defaultWhitelist;
214
- }
215
-
216
- const additions = extra
217
- .split(',')
218
- .map((item) => item.trim())
219
- .filter((item) => item.length > 0);
220
-
221
- return Array.from(new Set([...defaultWhitelist, ...additions]));
222
- }
223
-
224
- private async writeConfig(
225
- configPath: string,
226
- config: KoduConfig,
227
- ): Promise<void> {
228
- if (await this.fileExists(configPath)) {
229
- const overwrite = await this.ui.promptConfirm({
230
- message: 'kodu.json already exists. Overwrite?',
231
- default: false,
232
- });
233
-
234
- if (!overwrite) {
235
- this.ui.log.warn(
236
- 'Initialization cancelled: kodu.json file already exists.',
237
- );
238
- return;
239
- }
240
- }
241
-
242
- await fs.writeFile(
243
- configPath,
244
- `${JSON.stringify(config, null, 2)}\n`,
245
- 'utf8',
246
- );
247
- this.ui.log.success(`Saved ${configPath}`);
15
+ await this.updateGitignore();
16
+ this.ui.log.success('Done.');
248
17
  }
249
18
 
250
- private async ensurePromptFiles(
251
- paths: ReturnType<InitCommand['buildPromptPaths']>,
252
- ): Promise<void> {
253
- const promptDir = path.join(process.cwd(), '.kodu', 'prompts');
254
- await fs.mkdir(promptDir, { recursive: true });
255
-
256
- const keepFile = path.join(promptDir, '.keep');
257
- if (!(await this.fileExists(keepFile))) {
258
- await fs.writeFile(keepFile, '');
259
- }
260
-
261
- await Promise.all([
262
- this.writePromptIfMissing(paths.review.bug, DEFAULT_REVIEW_PROMPTS.bug),
263
- this.writePromptIfMissing(
264
- paths.review.style,
265
- DEFAULT_REVIEW_PROMPTS.style,
266
- ),
267
- this.writePromptIfMissing(
268
- paths.review.security,
269
- DEFAULT_REVIEW_PROMPTS.security,
270
- ),
271
- this.writePromptIfMissing(paths.commit, DEFAULT_COMMIT_PROMPT),
272
- this.writePromptIfMissing(paths.pack, DEFAULT_PACK_PROMPT),
273
- ]);
274
- }
275
-
276
- private buildPromptPaths() {
277
- return {
278
- review: {
279
- bug: path.posix.join('.kodu', 'prompts', 'review-bug.md'),
280
- style: path.posix.join('.kodu', 'prompts', 'review-style.md'),
281
- security: path.posix.join('.kodu', 'prompts', 'review-security.md'),
282
- },
283
- commit: path.posix.join('.kodu', 'prompts', 'commit.md'),
284
- pack: path.posix.join('.kodu', 'prompts', 'pack.md'),
285
- } as const;
286
- }
287
-
288
- private async writePromptIfMissing(
289
- target: string,
290
- content: string,
291
- ): Promise<void> {
292
- const absolute = path.isAbsolute(target)
293
- ? target
294
- : path.join(process.cwd(), target);
19
+ private async updateGitignore(): Promise<void> {
20
+ const gitignorePath = path.join(process.cwd(), '.gitignore');
295
21
 
296
- if (await this.fileExists(absolute)) {
22
+ if (!(await this.exists(gitignorePath))) {
23
+ this.ui.log.warn('.gitignore not found, skipping.');
297
24
  return;
298
25
  }
299
26
 
300
- await fs.mkdir(path.dirname(absolute), { recursive: true });
301
- await fs.writeFile(absolute, `${content}\n`, 'utf8');
302
- }
303
-
304
- private async ensureGitignore(): Promise<void> {
305
- const gitignorePath = path.join(process.cwd(), '.gitignore');
306
- const content = (await this.fileExists(gitignorePath))
307
- ? await fs.readFile(gitignorePath, 'utf8')
308
- : '';
309
-
27
+ const content = await fs.readFile(gitignorePath, 'utf8');
310
28
  const lines = content.split(/\r?\n/);
311
- const additions: string[] = [];
312
-
313
- if (!lines.some((line) => line.trim() === '.env')) {
314
- const addEnv = await this.ui.promptConfirm({
315
- message: '.env not in .gitignore. Add it?',
316
- default: true,
317
- });
318
-
319
- if (addEnv) {
320
- additions.push('.env');
321
- }
322
- }
323
29
 
324
- if (additions.length === 0) {
30
+ if (lines.some((line) => line.trim() === GITIGNORE_ENTRY)) {
31
+ this.ui.log.info(`${GITIGNORE_ENTRY} already in .gitignore`);
325
32
  return;
326
33
  }
327
34
 
328
35
  const trimmed = content.trimEnd();
329
36
  const next =
330
- trimmed.length > 0
331
- ? `${trimmed}\n${additions.join('\n')}`
332
- : additions.join('\n');
37
+ trimmed.length > 0 ? `${trimmed}\n${GITIGNORE_ENTRY}` : GITIGNORE_ENTRY;
333
38
  await fs.writeFile(gitignorePath, `${next}\n`, 'utf8');
334
- this.ui.log.success('Updated .gitignore');
39
+ this.ui.log.success(`Added ${GITIGNORE_ENTRY} to .gitignore`);
335
40
  }
336
41
 
337
- private async fileExists(targetPath: string): Promise<boolean> {
42
+ private async exists(target: string): Promise<boolean> {
338
43
  try {
339
- await fs.access(targetPath);
44
+ await fs.access(target);
340
45
  return true;
341
46
  } catch {
342
47
  return false;
@@ -8,10 +8,16 @@ import { FsService } from '../../core/file-system/fs.service';
8
8
  import { UiService } from '../../core/ui/ui.service';
9
9
  import { TokenizerService } from '../../shared/tokenizer/tokenizer.service';
10
10
 
11
+ type OutputFormat = 'xml' | 'text';
12
+
11
13
  type PackOptions = {
12
14
  copy?: boolean;
13
15
  template?: string;
14
16
  out?: string;
17
+ path?: string[];
18
+ exclude?: string[];
19
+ list?: boolean;
20
+ format?: OutputFormat;
15
21
  };
16
22
 
17
23
  type TemplateContext = {
@@ -57,6 +63,42 @@ export class PackCommand extends CommandRunner {
57
63
  return value;
58
64
  }
59
65
 
66
+ @Option({
67
+ flags: '-p, --path <path>',
68
+ description: 'Directory or glob to include (repeatable)',
69
+ })
70
+ parsePath(value: string, previous: string[] = []): string[] {
71
+ return [...previous, value];
72
+ }
73
+
74
+ @Option({
75
+ flags: '-e, --exclude <pattern>',
76
+ description: 'Additional exclude pattern (repeatable)',
77
+ })
78
+ parseExclude(value: string, previous: string[] = []): string[] {
79
+ return [...previous, value];
80
+ }
81
+
82
+ @Option({
83
+ flags: '-l, --list',
84
+ description: 'Print file list only, without content',
85
+ })
86
+ parseList(): boolean {
87
+ return true;
88
+ }
89
+
90
+ @Option({
91
+ flags: '-f, --format <format>',
92
+ description: 'Output format: xml (default) or text',
93
+ })
94
+ parseFormat(value: string): OutputFormat {
95
+ if (value !== 'xml' && value !== 'text') {
96
+ this.ui.log.warn(`Unknown format "${value}", using "xml"`);
97
+ return 'xml';
98
+ }
99
+ return value;
100
+ }
101
+
60
102
  async run(_inputs: string[], options: PackOptions): Promise<void> {
61
103
  const spinner = this.ui
62
104
  .createSpinner({ text: 'Collecting files...' })
@@ -64,11 +106,13 @@ export class PackCommand extends CommandRunner {
64
106
 
65
107
  try {
66
108
  const { packer } = this.configService.getConfig();
109
+ const extraExcludes = options.exclude ?? [];
67
110
  const files = await this.fsService.findProjectFiles({
68
111
  excludeBinary: true,
69
112
  useGitignore: packer.useGitignore,
70
- ignore: packer.ignore,
113
+ ignore: [...packer.ignore, ...extraExcludes],
71
114
  contentBasedBinaryDetection: packer.contentBasedBinaryDetection,
115
+ rootPaths: options.path,
72
116
  });
73
117
 
74
118
  if (files.length === 0) {
@@ -77,7 +121,16 @@ export class PackCommand extends CommandRunner {
77
121
  return;
78
122
  }
79
123
 
80
- const context = await this.buildContext(files);
124
+ if (options.list) {
125
+ spinner.success(`Found ${files.length} files`);
126
+ for (const file of files) {
127
+ this.ui.log.info(file);
128
+ }
129
+ return;
130
+ }
131
+
132
+ const format: OutputFormat = options.format ?? 'xml';
133
+ const context = await this.buildContext(files, format);
81
134
  const fileList = files.join('\n');
82
135
  const { tokens, usdEstimate } = this.tokenizer.count(context);
83
136
 
@@ -107,6 +160,7 @@ export class PackCommand extends CommandRunner {
107
160
  this.ui.log.info(`Files: ${files.length}`);
108
161
  this.ui.log.info(`Tokens: ${tokens}`);
109
162
  this.ui.log.info(`Cost estimate: ~$${usdEstimate.toFixed(4)}`);
163
+ this.ui.log.info(`Format: ${format}`);
110
164
  this.ui.log.success(`Saved to ${outputPath}`);
111
165
 
112
166
  if (options.copy) {
@@ -120,14 +174,23 @@ export class PackCommand extends CommandRunner {
120
174
  }
121
175
  }
122
176
 
123
- private async buildContext(files: string[]): Promise<string> {
177
+ private async buildContext(
178
+ files: string[],
179
+ format: OutputFormat,
180
+ ): Promise<string> {
124
181
  const chunks = await Promise.all(
125
182
  files.map(async (file) => {
126
183
  const content = await this.fsService.readFileRelative(file);
184
+ if (format === 'xml') {
185
+ return `<file path="${file}">\n${content}\n</file>`;
186
+ }
127
187
  return `// file: ${file}\n${content}`;
128
188
  }),
129
189
  );
130
190
 
191
+ if (format === 'xml') {
192
+ return `<files>\n${chunks.join('\n\n')}\n</files>`;
193
+ }
131
194
  return chunks.join('\n\n');
132
195
  }
133
196
 
@@ -1,43 +1,4 @@
1
1
  import { z } from 'zod';
2
- import {
3
- DEFAULT_COMMIT_TOKENS,
4
- DEFAULT_LLM_MODEL,
5
- DEFAULT_REVIEW_TOKENS,
6
- } from '../../shared/constants';
7
-
8
- // Model ID format: provider/model-name (e.g., "openai/gpt-4o", "anthropic/claude-4-5-sonnet")
9
- const modelIdSchema = z.string().regex(/^[a-zA-Z0-9-_]+\/[a-zA-Z0-9-_.]+$/, {
10
- message:
11
- "Model must be in format 'provider/model-name' (e.g., 'openai/gpt-4o')",
12
- });
13
-
14
- const llmCommandSettingsSchema = z
15
- .object({
16
- maxOutputTokens: z.number().int().positive().optional(),
17
- })
18
- .passthrough();
19
-
20
- const llmCommandSchema = z.object({
21
- modelSettings: llmCommandSettingsSchema.optional(),
22
- });
23
-
24
- const createDefaultCommandSettings = () => ({
25
- commit: { modelSettings: { maxOutputTokens: DEFAULT_COMMIT_TOKENS } },
26
- review: { modelSettings: { maxOutputTokens: DEFAULT_REVIEW_TOKENS } },
27
- });
28
-
29
- const llmCommandsSchema = z
30
- .object({
31
- commit: llmCommandSchema.optional(),
32
- review: llmCommandSchema.optional(),
33
- })
34
- .default(() => createDefaultCommandSettings());
35
-
36
- const llmSchema = z.object({
37
- model: modelIdSchema.default(`openai/${DEFAULT_LLM_MODEL}`),
38
- apiKeyEnv: z.string().default('OPENAI_API_KEY'),
39
- commands: llmCommandsSchema.optional(),
40
- });
41
2
 
42
3
  const cleanerSchema = z.object({
43
4
  whitelist: z.array(z.string()).default(['//!']),
@@ -63,40 +24,14 @@ const packerSchema = z.object({
63
24
  contentBasedBinaryDetection: z.boolean().default(false),
64
25
  });
65
26
 
66
- const promptSourceSchema = z.string();
67
-
68
27
  const promptsSchema = z
69
28
  .object({
70
- review: z.record(z.string(), promptSourceSchema).optional(),
71
- commit: promptSourceSchema.optional(),
72
- pack: promptSourceSchema.optional(),
29
+ pack: z.string().optional(),
73
30
  })
74
31
  .optional();
75
32
 
76
- const serverPathsSchema = z
77
- .object({
78
- apps: z.string().default('/var/agent-apps'),
79
- caddy: z.string().optional(),
80
- })
81
- .optional();
82
-
83
- const serverConfigSchema = z.object({
84
- host: z.string(),
85
- port: z.number().default(22),
86
- user: z.string(),
87
- sshKeyPath: z.string(),
88
- description: z.string().optional(),
89
- paths: serverPathsSchema,
90
- env: z.record(z.string(), z.string()).optional(),
91
- });
92
-
93
- const opsSchema = z.object({
94
- servers: z.record(z.string(), serverConfigSchema),
95
- });
96
-
97
33
  export const configSchema = z.object({
98
34
  $schema: z.string().optional(),
99
- llm: llmSchema.optional(),
100
35
  cleaner: cleanerSchema.default({
101
36
  whitelist: ['//!'],
102
37
  keepJSDoc: true,
@@ -118,8 +53,6 @@ export const configSchema = z.object({
118
53
  contentBasedBinaryDetection: false,
119
54
  }),
120
55
  prompts: promptsSchema,
121
- ops: opsSchema.optional(),
122
56
  });
123
57
 
124
58
  export type KoduConfig = z.infer<typeof configSchema>;
125
- export type ServerConfig = z.infer<typeof serverConfigSchema>;
@@ -21,14 +21,14 @@ export class ConfigService {
21
21
 
22
22
  if (!result || result.isEmpty || !result.config) {
23
23
  this.terminate(
24
- 'kodu.json config not found. Run `kodu init` to create the file.',
24
+ 'kodu.json not found. Create it in the project root to configure kodu.',
25
25
  );
26
26
  }
27
27
 
28
28
  const parsed = configSchema.safeParse(result.config);
29
29
 
30
30
  if (!parsed.success) {
31
- console.error(pc.red('kodu.json config is invalid:'));
31
+ console.error(pc.red('kodu.json is invalid:'));
32
32
  parsed.error.issues.forEach((issue) => {
33
33
  const path = issue.path.join('.') || '(root)';
34
34
  console.error(pc.red(`- ${path}: ${issue.message}`));
@@ -1,19 +1,13 @@
1
1
  import { promises as fs } from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import { Injectable } from '@nestjs/common';
4
- import { replacePromptVariables } from './default-prompts';
5
-
6
- type Variables = Record<string, string | number>;
7
4
 
8
5
  @Injectable()
9
6
  export class PromptService {
10
7
  private readonly cache = new Map<string, string>();
11
8
 
12
- async load(source: string, variables?: Variables): Promise<string> {
13
- const raw = await this.readSource(source);
14
- return variables
15
- ? replacePromptVariables(raw, this.normalize(variables))
16
- : raw;
9
+ async load(source: string): Promise<string> {
10
+ return this.readSource(source);
17
11
  }
18
12
 
19
13
  async loadFromPromptsDir(name: string): Promise<string> {
@@ -66,29 +60,13 @@ export class PromptService {
66
60
  }
67
61
  const hasPathSegments = value.includes('/') || value.includes('\\');
68
62
  const hasExtension = path.extname(value) !== '';
69
-
70
63
  return value.trim().length > 0 && !hasPathSegments && !hasExtension;
71
64
  }
72
65
 
73
66
  private buildCandidates(name: string): string[] {
74
67
  const names = path.extname(name) ? [name] : [`${name}.md`, `${name}.txt`];
75
-
76
- const roots = [path.join(process.cwd(), '.kodu', 'prompts')];
77
-
78
- const candidates: string[] = [];
79
- for (const root of roots) {
80
- for (const variant of names) {
81
- candidates.push(path.join(root, variant));
82
- }
83
- }
84
-
85
- return candidates;
86
- }
87
-
88
- private normalize(variables: Variables): Record<string, string> {
89
- return Object.fromEntries(
90
- Object.entries(variables).map(([key, value]) => [key, value.toString()]),
91
- );
68
+ const root = path.join(process.cwd(), '.kodu', 'prompts');
69
+ return names.map((variant) => path.join(root, variant));
92
70
  }
93
71
 
94
72
  private async exists(target: string): Promise<boolean> {
@@ -20,6 +20,7 @@ type FindProjectFilesOptions = {
20
20
  excludeBinary?: boolean;
21
21
  contentBasedBinaryDetection?: boolean;
22
22
  maxFileSizeBytes?: number;
23
+ rootPaths?: string[];
23
24
  };
24
25
 
25
26
  @Injectable()
@@ -53,7 +54,12 @@ export class FsService {
53
54
  }
54
55
 
55
56
  const globIgnore = this.buildGlobIgnorePatterns(combinedIgnore);
56
- const entries = await glob(['**/*'], {
57
+
58
+ const patterns = options.rootPaths?.length
59
+ ? options.rootPaths.map((p) => `${p}/**`)
60
+ : ['**/*'];
61
+
62
+ const entries = await glob(patterns, {
57
63
  onlyFiles: true,
58
64
  absolute: true,
59
65
  dot: true,
@@ -1,8 +1,4 @@
1
1
  export const MAX_FILE_SIZE_BYTES = 1024 * 1024; // 1 MB
2
- export const WARNING_TOKEN_THRESHOLD = 12_000;
3
- export const DEFAULT_COMMIT_TOKENS = 1_500;
4
- export const DEFAULT_REVIEW_TOKENS = 5_000;
5
- export const DEFAULT_LLM_MODEL = 'gpt-4o';
6
2
  export const DEFAULT_PRICE_PER_MILLION = 5;
7
3
 
8
4
  const BINARY_EXTENSION_LIST = [
@@ -1,9 +1,7 @@
1
1
  import { Module } from '@nestjs/common';
2
- import { ConfigModule } from '../../core/config/config.module';
3
2
  import { GitService } from './git.service';
4
3
 
5
4
  @Module({
6
- imports: [ConfigModule],
7
5
  providers: [GitService],
8
6
  exports: [GitService],
9
7
  })