@codemieai/code 0.0.1 → 0.0.2

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.
@@ -0,0 +1,493 @@
1
+ # Git Workflow Policy
2
+
3
+ This document defines the git workflow standards for the codemie-tools repository.
4
+
5
+ ## Core Principles
6
+
7
+ **IMPORTANT - Always use feature branches:**
8
+ - NEVER commit directly to `main` branch
9
+ - ALWAYS create a feature branch for changes
10
+ - ALL changes must go through Pull Request review
11
+ - Keep branches focused on a single feature or fix
12
+
13
+ ## Branch Naming Conventions
14
+
15
+ Use descriptive, lowercase branch names with hyphens:
16
+
17
+ ### Patterns
18
+
19
+ - `feature/add-something` - New features or enhancements
20
+ - `fix/issue-description` - Bug fixes
21
+ - `docs/update-readme` - Documentation changes
22
+ - `refactor/component-name` - Code refactoring without behavior change
23
+ - `chore/update-dependencies` - Maintenance tasks (dependencies, config, etc.)
24
+ - `test/add-tests` - Adding or updating tests
25
+
26
+ ### Guidelines
27
+
28
+ - Use lowercase with hyphens (kebab-case)
29
+ - Be descriptive but concise
30
+ - Include ticket/issue number if applicable:
31
+ - `feature/GH-123-add-jira-integration`
32
+ - `fix/JIRA-456-auth-timeout`
33
+ - Keep branch names under 50 characters when possible
34
+ - Avoid special characters except hyphens
35
+
36
+ ### Examples
37
+
38
+ ✅ **Good:**
39
+ - `feature/add-slack-notifications`
40
+ - `fix/memory-leak-in-parser`
41
+ - `docs/update-api-guide`
42
+ - `refactor/simplify-error-handling`
43
+ - `chore/bump-dependencies`
44
+
45
+ ❌ **Bad:**
46
+ - `my-branch` (not descriptive)
47
+ - `Feature_Add_Something` (wrong case, underscores)
48
+ - `fix` (too vague)
49
+ - `johns-work` (not task-focused)
50
+
51
+ ## Standard Workflow
52
+
53
+ ### 1. Start from Main
54
+
55
+ Always start from the latest `main` branch:
56
+
57
+ ```bash
58
+ git checkout main
59
+ git pull origin main
60
+ ```
61
+
62
+ ### 2. Create Feature Branch
63
+
64
+ Create a descriptive feature branch:
65
+
66
+ ```bash
67
+ git checkout -b feature/your-feature-name
68
+ ```
69
+
70
+ ### 3. Make Changes
71
+
72
+ Work on your changes, committing regularly:
73
+
74
+ ```bash
75
+ # Stage changes
76
+ git add <files>
77
+
78
+ # Or stage all changes
79
+ git add .
80
+
81
+ # Commit with descriptive message
82
+ git commit -m "type: description"
83
+ ```
84
+
85
+ ### 4. Push Branch
86
+
87
+ Push your feature branch to remote:
88
+
89
+ ```bash
90
+ # First push (set upstream)
91
+ git push -u origin feature/your-feature-name
92
+
93
+ # Subsequent pushes
94
+ git push
95
+ ```
96
+
97
+ ### 5. Create Pull Request
98
+
99
+ Create a PR using GitHub UI or CLI:
100
+
101
+ ```bash
102
+ # Using GitHub CLI
103
+ gh pr create --title "Add feature XYZ" --body "Description of changes"
104
+
105
+ # Or use GitHub web interface
106
+ ```
107
+
108
+ ### 6. After PR Approval
109
+
110
+ Once approved and CI passes, merge the PR:
111
+ - Use GitHub's "Squash and merge" for clean history
112
+ - Delete the feature branch after merge
113
+
114
+ ## Commit Message Guidelines
115
+
116
+ Follow [Conventional Commits](https://www.conventionalcommits.org/) specification:
117
+
118
+ ### Format
119
+
120
+ ```
121
+ type: short description (72 chars max)
122
+
123
+ Optional longer description explaining the change.
124
+ Can span multiple lines.
125
+
126
+ Fixes #123
127
+ Co-authored-by: CodeMie AI <codemie.ai@gmail.com>
128
+ ```
129
+
130
+ ### Co-Author Attribution
131
+
132
+ **When work is assisted by CodeMie AI**, add the co-author line at the end of the commit message:
133
+
134
+ ```
135
+ Co-authored-by: CodeMie AI <codemie.ai@gmail.com>
136
+ ```
137
+
138
+ This ensures:
139
+ - GitHub properly recognizes CodeMie AI contributions
140
+ - Contribution graphs show AI-assisted commits
141
+ - Clear attribution for AI-generated or AI-assisted code
142
+
143
+ **Usage:**
144
+ ```bash
145
+ # Single line commit with co-author
146
+ git commit -m "feat: add feature" -m "Co-authored-by: CodeMie AI <codemie.ai@gmail.com>"
147
+
148
+ # Or using heredoc for multi-line
149
+ git commit -m "$(cat <<EOF
150
+ feat: add new feature
151
+
152
+ Detailed description of the changes made.
153
+
154
+ Co-authored-by: CodeMie AI <codemie.ai@gmail.com>
155
+ EOF
156
+ )"
157
+ ```
158
+
159
+ **How GitHub displays co-authors:**
160
+ - Appears in commit details on GitHub UI
161
+ - Shows in contribution graphs
162
+ - Listed in repository insights
163
+ - Appears in PR commit lists
164
+ - Format must be exact: `Co-authored-by: Name <email@domain.com>`
165
+
166
+ **Benefits:**
167
+ - Clear visibility of AI-assisted work
168
+ - Proper attribution in open source contributions
169
+ - Transparent collaboration tracking
170
+ - Organization-wide AI contribution metrics
171
+
172
+ ### Types
173
+
174
+ - `feat:` - New feature
175
+ - `fix:` - Bug fix
176
+ - `docs:` - Documentation only
177
+ - `refactor:` - Code refactoring (no behavior change)
178
+ - `test:` - Adding or updating tests
179
+ - `chore:` - Maintenance (dependencies, config, build)
180
+ - `style:` - Code style changes (formatting, whitespace)
181
+ - `perf:` - Performance improvements
182
+ - `ci:` - CI/CD changes
183
+
184
+ ### Examples
185
+
186
+ ✅ **Good commit messages:**
187
+ ```
188
+ feat: add Slack notification integration
189
+
190
+ Implements Slack webhook support for sending notifications
191
+ when tickets are created or updated.
192
+
193
+ Closes #234
194
+ Co-authored-by: CodeMie AI <codemie.ai@gmail.com>
195
+ ```
196
+
197
+ ```
198
+ fix: resolve memory leak in report parser
199
+
200
+ The parser was not releasing file handles after processing.
201
+ Added proper cleanup in finally block.
202
+
203
+ Fixes #456
204
+ Co-authored-by: CodeMie AI <codemie.ai@gmail.com>
205
+ ```
206
+
207
+ ```
208
+ docs: update installation guide with Poetry commands
209
+
210
+ Added missing steps for virtual environment setup
211
+ and dependency installation using Poetry.
212
+
213
+ Co-authored-by: CodeMie AI <codemie.ai@gmail.com>
214
+ ```
215
+
216
+ ```
217
+ refactor: simplify error handling in ITSM toolkit
218
+
219
+ Consolidated duplicate error handling code into base class.
220
+ No functional changes.
221
+
222
+ Co-authored-by: CodeMie AI <codemie.ai@gmail.com>
223
+ ```
224
+
225
+ ❌ **Bad commit messages:**
226
+ ```
227
+ Update files # Too vague
228
+ Fixed stuff # Not descriptive
229
+ WIP # Work in progress, don't commit
230
+ test commit # Not meaningful
231
+ asdfasdf # Nonsense
232
+ ```
233
+
234
+ ### Commit Message Best Practices
235
+
236
+ - **First line**: Concise summary (≤72 characters)
237
+ - **Type prefix**: Always use conventional commit type
238
+ - **Imperative mood**: "add" not "added" or "adds"
239
+ - **Lowercase**: Start description with lowercase
240
+ - **No period**: Don't end summary with period
241
+ - **Body**: Add context if needed (blank line after summary)
242
+ - **References**: Link to issues/PRs when applicable
243
+ - **Breaking changes**: Use `!` after type or `BREAKING CHANGE:` in body
244
+
245
+ ## Pull Request Guidelines
246
+
247
+ ### PR Title
248
+
249
+ Use the same format as commit messages:
250
+ ```
251
+ feat: add feature name
252
+ fix: resolve bug description
253
+ ```
254
+
255
+ ### PR Description Template
256
+
257
+ ```markdown
258
+ ## Summary
259
+ Brief description of changes
260
+
261
+ ## Changes Made
262
+ - Bullet point list
263
+ - Of specific changes
264
+ - In this PR
265
+
266
+ ## Testing
267
+ - [ ] Manual testing performed
268
+ - [ ] Existing tests pass
269
+ - [ ] New tests added (if applicable)
270
+
271
+ ## Screenshots (if applicable)
272
+ Add screenshots or GIFs
273
+
274
+ ## Related Issues
275
+ Closes #123
276
+ Relates to #456
277
+
278
+ ## Checklist
279
+ - [ ] Code follows project style guidelines
280
+ - [ ] Documentation updated (if needed)
281
+ - [ ] Tests added/updated (if needed)
282
+ - [ ] All CI checks passing
283
+ ```
284
+
285
+ ### Review Process
286
+
287
+ 1. **Self-review**: Review your own changes before requesting review
288
+ 2. **Request review**: Assign relevant reviewers
289
+ 3. **Address feedback**: Respond to all comments
290
+ 4. **Keep updated**: Merge main into your branch if conflicts arise
291
+ 5. **Clean history**: Squash unnecessary commits if needed
292
+
293
+ ## Working with Main Branch
294
+
295
+ ### Keeping Branch Updated
296
+
297
+ If `main` has moved ahead while working on your feature:
298
+
299
+ ```bash
300
+ # From your feature branch
301
+ git fetch origin
302
+ git merge origin/main
303
+
304
+ # Or use rebase for cleaner history
305
+ git fetch origin
306
+ git rebase origin/main
307
+ ```
308
+
309
+ ### Handling Merge Conflicts
310
+
311
+ If conflicts occur:
312
+
313
+ ```bash
314
+ # 1. Identify conflicted files
315
+ git status
316
+
317
+ # 2. Edit files to resolve conflicts
318
+ # Look for <<<<<<, ======, >>>>>> markers
319
+
320
+ # 3. Mark conflicts as resolved
321
+ git add <resolved-files>
322
+
323
+ # 4. Continue merge/rebase
324
+ git merge --continue
325
+ # or
326
+ git rebase --continue
327
+ ```
328
+
329
+ ## Emergency Hotfixes
330
+
331
+ For critical production issues:
332
+
333
+ ```bash
334
+ # 1. Create hotfix branch from main
335
+ git checkout main
336
+ git pull origin main
337
+ git checkout -b fix/critical-bug-name
338
+
339
+ # 2. Make fix and test thoroughly
340
+
341
+ # 3. Push and create PR
342
+ git push -u origin fix/critical-bug-name
343
+
344
+ # 4. Request expedited review
345
+ # Tag PR with "urgent" or "hotfix" label
346
+
347
+ # 5. Merge after approval (may skip some CI checks if critical)
348
+ ```
349
+
350
+ ## Best Practices
351
+
352
+ ### Do's ✅
353
+
354
+ - **Do** create small, focused branches
355
+ - **Do** commit frequently with clear messages
356
+ - **Do** keep commits atomic (one logical change per commit)
357
+ - **Do** write descriptive PR descriptions
358
+ - **Do** respond to review feedback promptly
359
+ - **Do** update documentation with code changes
360
+ - **Do** delete branches after merging
361
+ - **Do** test thoroughly before pushing
362
+
363
+ ### Don'ts ❌
364
+
365
+ - **Don't** commit directly to `main`
366
+ - **Don't** push broken code
367
+ - **Don't** commit secrets or sensitive data
368
+ - **Don't** mix unrelated changes in one commit
369
+ - **Don't** use vague commit messages
370
+ - **Don't** leave branches stale for weeks
371
+ - **Don't** force push to shared branches
372
+ - **Don't** commit merge conflicts
373
+
374
+ ## Git Commands Reference
375
+
376
+ ### Essential Commands
377
+
378
+ ```bash
379
+ # Check status
380
+ git status
381
+
382
+ # View changes
383
+ git diff # Unstaged changes
384
+ git diff --staged # Staged changes
385
+
386
+ # Create branch
387
+ git checkout -b branch-name
388
+
389
+ # Switch branches
390
+ git checkout branch-name
391
+
392
+ # Stage changes
393
+ git add <file>
394
+ git add . # All changes
395
+
396
+ # Commit
397
+ git commit -m "message"
398
+ git commit --amend # Amend last commit
399
+
400
+ # Push
401
+ git push
402
+ git push -u origin branch # First push with upstream
403
+
404
+ # Pull latest changes
405
+ git pull origin main
406
+
407
+ # View commit history
408
+ git log
409
+ git log --oneline
410
+ git log --graph
411
+
412
+ # Undo changes
413
+ git checkout -- <file> # Discard unstaged changes
414
+ git reset HEAD <file> # Unstage changes
415
+ git reset --soft HEAD~1 # Undo last commit (keep changes)
416
+
417
+ # Branch management
418
+ git branch # List branches
419
+ git branch -d branch-name # Delete local branch
420
+ git push origin --delete branch-name # Delete remote branch
421
+ ```
422
+
423
+ ## Integration with CI/CD
424
+
425
+ All branches automatically trigger:
426
+ - Linting checks
427
+ - Unit tests
428
+ - Build verification
429
+ - Code quality checks
430
+
431
+ PRs cannot be merged until:
432
+ - All CI checks pass
433
+ - At least one approval received
434
+ - No merge conflicts
435
+ - Branch is up to date with main
436
+
437
+ ## Troubleshooting
438
+
439
+ ### "Branch is behind main"
440
+
441
+ ```bash
442
+ git fetch origin
443
+ git merge origin/main
444
+ git push
445
+ ```
446
+
447
+ ### "Merge conflicts"
448
+
449
+ ```bash
450
+ # See conflicted files
451
+ git status
452
+
453
+ # After resolving conflicts
454
+ git add <resolved-files>
455
+ git commit
456
+ ```
457
+
458
+ ### "Accidentally committed to main"
459
+
460
+ ```bash
461
+ # Create branch from current state
462
+ git branch feature/my-changes
463
+
464
+ # Reset main to match remote
465
+ git reset --hard origin/main
466
+
467
+ # Switch to new branch
468
+ git checkout feature/my-changes
469
+
470
+ # Push branch
471
+ git push -u origin feature/my-changes
472
+ ```
473
+
474
+ ### "Need to update commit message"
475
+
476
+ ```bash
477
+ # Last commit only
478
+ git commit --amend -m "new message"
479
+
480
+ # Push (requires force if already pushed)
481
+ git push --force-with-lease
482
+ ```
483
+
484
+ ## Additional Resources
485
+
486
+ - [Conventional Commits](https://www.conventionalcommits.org/)
487
+ - [Git Best Practices](https://git-scm.com/book/en/v2)
488
+ - [GitHub Flow](https://guides.github.com/introduction/flow/)
489
+ - [Semantic Versioning](https://semver.org/)
490
+
491
+ ---
492
+
493
+ **Remember**: Following these guidelines ensures clean git history, easier code review, and better collaboration across the team.
package/CLAUDE.md CHANGED
@@ -162,41 +162,40 @@ To create your own specialized agent:
162
162
 
163
163
  ### Git Workflow Policy
164
164
 
165
- **IMPORTANT - Always use feature branches:**
166
- - NEVER commit directly to `main` branch
167
- - ALWAYS create a feature branch for changes
168
- - Follow standard git branch naming conventions:
169
- - `feature/add-something` - New features
170
- - `fix/issue-description` - Bug fixes
171
- - `docs/update-readme` - Documentation changes
172
- - `refactor/component-name` - Code refactoring
173
- - `chore/update-dependencies` - Maintenance tasks
174
-
175
- **Standard workflow:**
165
+ **CRITICAL - Read the complete Git Workflow Policy:**
166
+
167
+ 📖 **See:** `.codemie/guides/git-workflow.md` for comprehensive git workflow guidelines
168
+
169
+ **Key Requirements:**
170
+ - ❌ **NEVER commit directly to `main` branch**
171
+ - **ALWAYS create a feature branch** for any changes
172
+ - **ALL changes go through Pull Request review**
173
+ - Use conventional commit format: `type: description`
174
+ - ✅ Follow branch naming: `feature/`, `fix/`, `docs/`, `refactor/`, `chore/`
175
+
176
+ **Quick Reference:**
176
177
  ```bash
177
- # 1. Create feature branch from main
178
- git checkout main
179
- git pull origin main
178
+ # Standard workflow
179
+ git checkout main && git pull origin main
180
180
  git checkout -b feature/your-feature-name
181
-
182
- # 2. Make changes and commit
181
+ # Make changes...
183
182
  git add .
184
- git commit -m "Descriptive commit message"
185
-
186
- # 3. Push branch to remote
183
+ git commit -m "feat: add something" -m "Co-authored-by: CodeMie AI <codemie.ai@gmail.com>"
187
184
  git push -u origin feature/your-feature-name
185
+ # Create PR via GitHub UI or: gh pr create
186
+ ```
188
187
 
189
- # 4. Create Pull Request for review
190
- # Use GitHub UI or gh CLI to create PR
188
+ **Important:** Always add CodeMie AI co-author to commits for proper attribution
191
189
 
192
- # 5. After PR approval, merge to main
193
- ```
190
+ For detailed information on:
191
+ - Branch naming conventions
192
+ - Commit message guidelines
193
+ - PR creation and review process
194
+ - Merge conflict resolution
195
+ - Emergency hotfixes
196
+ - Git commands reference
194
197
 
195
- **Branch naming guidelines:**
196
- - Use lowercase with hyphens
197
- - Be descriptive but concise
198
- - Include ticket/issue number if applicable (e.g., `feature/GH-123-add-feature`)
199
- - Keep branch names under 50 characters when possible
198
+ 👉 **Read:** `.codemie/guides/git-workflow.md`
200
199
 
201
200
  ### Release & Publishing Policy
202
201
 
@@ -1 +1 @@
1
- {"version":3,"file":"run.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/run.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKpC,wBAAgB,gBAAgB,IAAI,OAAO,CAqC1C"}
1
+ {"version":3,"file":"run.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/run.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKpC,wBAAgB,gBAAgB,IAAI,OAAO,CAiE1C"}
@@ -11,7 +11,9 @@ function createRunCommand() {
11
11
  .description('Run an agent')
12
12
  .argument('<agent>', 'Agent name to run')
13
13
  .argument('[args...]', 'Additional arguments to pass to the agent')
14
- .option('-m, --model <model>', 'Model to use')
14
+ .option('-m, --model <model>', 'Model to use (CodeMie option, not passed to agent)')
15
+ .allowUnknownOption() // Allow passing unknown options to the agent
16
+ .passThroughOptions() // Pass through options to the agent
15
17
  .action(async (agentName, args, options) => {
16
18
  try {
17
19
  const agent = registry_1.AgentRegistry.getAgent(agentName);
@@ -28,8 +30,32 @@ function createRunCommand() {
28
30
  const envVar = `${agentName.toUpperCase().replace('-', '_')}_MODEL`;
29
31
  process.env[envVar] = options.model;
30
32
  }
31
- // Run the agent
32
- await agent.run(args);
33
+ // Collect all arguments to pass to the agent
34
+ // This includes both positional args and any unknown options
35
+ const agentArgs = [...args];
36
+ // Add back unknown options that were parsed
37
+ // Commander.js stores unknown options in the options object
38
+ // We need to reconstruct them as command-line arguments
39
+ for (const [key, value] of Object.entries(options)) {
40
+ // Skip known CodeMie options
41
+ if (key === 'model')
42
+ continue;
43
+ // Reconstruct the option format
44
+ if (key.length === 1) {
45
+ // Single character option: -p
46
+ agentArgs.push(`-${key}`);
47
+ }
48
+ else {
49
+ // Multi-character option: --prompt
50
+ agentArgs.push(`--${key}`);
51
+ }
52
+ // Add the value if it's not a boolean flag
53
+ if (value !== true && value !== undefined) {
54
+ agentArgs.push(String(value));
55
+ }
56
+ }
57
+ // Run the agent with all collected arguments
58
+ await agent.run(agentArgs);
33
59
  }
34
60
  catch (error) {
35
61
  logger_1.logger.error('Failed to run agent:', error);
@@ -1 +1 @@
1
- {"version":3,"file":"run.js","sourceRoot":"","sources":["../../../src/cli/commands/run.ts"],"names":[],"mappings":";;AAKA,4CAqCC;AA1CD,yCAAoC;AACpC,oDAAsD;AACtD,+CAA4C;AAC5C,+CAAwD;AAExD,SAAgB,gBAAgB;IAC9B,MAAM,OAAO,GAAG,IAAI,mBAAO,CAAC,KAAK,CAAC,CAAC;IAEnC,OAAO;SACJ,WAAW,CAAC,cAAc,CAAC;SAC3B,QAAQ,CAAC,SAAS,EAAE,mBAAmB,CAAC;SACxC,QAAQ,CAAC,WAAW,EAAE,2CAA2C,CAAC;SAClE,MAAM,CAAC,qBAAqB,EAAE,cAAc,CAAC;SAC7C,MAAM,CAAC,KAAK,EAAE,SAAiB,EAAE,IAAc,EAAE,OAAO,EAAE,EAAE;QAC3D,IAAI,CAAC;YACH,MAAM,KAAK,GAAG,wBAAa,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEhD,IAAI,CAAC,KAAK,EAAE,CAAC;gBACX,MAAM,IAAI,2BAAkB,CAAC,SAAS,CAAC,CAAC;YAC1C,CAAC;YAED,qBAAqB;YACrB,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC;gBACjC,eAAM,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,WAAW,6DAA6D,SAAS,EAAE,CAAC,CAAC;gBAC3G,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAClB,CAAC;YAED,6CAA6C;YAC7C,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;gBAClB,MAAM,MAAM,GAAG,GAAG,SAAS,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,QAAQ,CAAC;gBACpE,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC;YACtC,CAAC;YAED,gBAAgB;YAChB,MAAM,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;QACxB,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACxB,eAAM,CAAC,KAAK,CAAC,sBAAsB,EAAE,KAAK,CAAC,CAAC;YAC5C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;IACH,CAAC,CAAC,CAAC;IAEL,OAAO,OAAO,CAAC;AACjB,CAAC"}
1
+ {"version":3,"file":"run.js","sourceRoot":"","sources":["../../../src/cli/commands/run.ts"],"names":[],"mappings":";;AAKA,4CAiEC;AAtED,yCAAoC;AACpC,oDAAsD;AACtD,+CAA4C;AAC5C,+CAAwD;AAExD,SAAgB,gBAAgB;IAC9B,MAAM,OAAO,GAAG,IAAI,mBAAO,CAAC,KAAK,CAAC,CAAC;IAEnC,OAAO;SACJ,WAAW,CAAC,cAAc,CAAC;SAC3B,QAAQ,CAAC,SAAS,EAAE,mBAAmB,CAAC;SACxC,QAAQ,CAAC,WAAW,EAAE,2CAA2C,CAAC;SAClE,MAAM,CAAC,qBAAqB,EAAE,oDAAoD,CAAC;SACnF,kBAAkB,EAAE,CAAC,6CAA6C;SAClE,kBAAkB,EAAE,CAAC,oCAAoC;SACzD,MAAM,CAAC,KAAK,EAAE,SAAiB,EAAE,IAAc,EAAE,OAAO,EAAE,EAAE;QAC3D,IAAI,CAAC;YACH,MAAM,KAAK,GAAG,wBAAa,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEhD,IAAI,CAAC,KAAK,EAAE,CAAC;gBACX,MAAM,IAAI,2BAAkB,CAAC,SAAS,CAAC,CAAC;YAC1C,CAAC;YAED,qBAAqB;YACrB,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC;gBACjC,eAAM,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,WAAW,6DAA6D,SAAS,EAAE,CAAC,CAAC;gBAC3G,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAClB,CAAC;YAED,6CAA6C;YAC7C,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;gBAClB,MAAM,MAAM,GAAG,GAAG,SAAS,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,QAAQ,CAAC;gBACpE,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC;YACtC,CAAC;YAED,6CAA6C;YAC7C,6DAA6D;YAC7D,MAAM,SAAS,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;YAE5B,4CAA4C;YAC5C,4DAA4D;YAC5D,wDAAwD;YACxD,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC;gBACnD,6BAA6B;gBAC7B,IAAI,GAAG,KAAK,OAAO;oBAAE,SAAS;gBAE9B,gCAAgC;gBAChC,IAAI,GAAG,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;oBACrB,8BAA8B;oBAC9B,SAAS,CAAC,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC;gBAC5B,CAAC;qBAAM,CAAC;oBACN,mCAAmC;oBACnC,SAAS,CAAC,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC,CAAC;gBAC7B,CAAC;gBAED,2CAA2C;gBAC3C,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;oBAC1C,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;gBAChC,CAAC;YACH,CAAC;YAED,6CAA6C;YAC7C,MAAM,KAAK,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;QAC7B,CAAC;QAAC,OAAO,KAAc,EAAE,CAAC;YACxB,eAAM,CAAC,KAAK,CAAC,sBAAsB,EAAE,KAAK,CAAC,CAAC;YAC5C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;IACH,CAAC,CAAC,CAAC;IAEL,OAAO,OAAO,CAAC;AACjB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemieai/code",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "CodeMie Code - AI coding assistant and CLI wrapper for multiple agents",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",