codetyper-cli 0.2.4 → 0.4.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.
- package/README.md +36 -0
- package/dist/index.js +38982 -34079
- package/package.json +3 -1
- package/src/version.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
<img src="assets/Codetyper_logo.png" alt="CodeTyper Logo" width="400">
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="https://github.com/CarGDev/codetyper.cli/releases"><img src="https://img.shields.io/badge/version-0.3.0-blue" alt="Version"></a>
|
|
9
|
+
<a href="https://github.com/CarGDev/codetyper.cli/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="License"></a>
|
|
10
|
+
<a href="https://bun.sh"><img src="https://img.shields.io/badge/runtime-Bun-orange" alt="Bun"></a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
7
13
|
An AI-powered terminal coding agent with an interactive TUI. CodeTyper autonomously executes coding tasks using tool calls with granular permission controls and intelligent provider routing.
|
|
8
14
|
|
|
9
15
|
## How It Works
|
|
@@ -392,6 +398,28 @@ Branch and rewind session history for experimentation.
|
|
|
392
398
|
|
|
393
399
|
Sessions are stored in `.codetyper/sessions/` with automatic commit message suggestions.
|
|
394
400
|
|
|
401
|
+
## Roadmap
|
|
402
|
+
|
|
403
|
+
### v0.4.0 - Agent Completion
|
|
404
|
+
|
|
405
|
+
The next major release focuses on production-ready autonomous agent execution:
|
|
406
|
+
|
|
407
|
+
| Feature | Issue | Status |
|
|
408
|
+
|---------|-------|--------|
|
|
409
|
+
| Plan Approval Gate | [#111](https://github.com/CarGDev/codetyper.cli/issues/111) | Planned |
|
|
410
|
+
| Diff Preview Before Write | [#112](https://github.com/CarGDev/codetyper.cli/issues/112) | Planned |
|
|
411
|
+
| Execution Control (Pause/Resume/Abort) | [#113](https://github.com/CarGDev/codetyper.cli/issues/113) | Planned |
|
|
412
|
+
| Consistent Model Behavior | [#114](https://github.com/CarGDev/codetyper.cli/issues/114) | Planned |
|
|
413
|
+
| Quality Gates (TypeScript, Lint, Tests) | [#115](https://github.com/CarGDev/codetyper.cli/issues/115) | Planned |
|
|
414
|
+
|
|
415
|
+
### Known Issues
|
|
416
|
+
|
|
417
|
+
- Agent mode executes without waiting for user plan approval
|
|
418
|
+
- Different LLM models may behave inconsistently during agent execution
|
|
419
|
+
- No diff preview before file modifications
|
|
420
|
+
|
|
421
|
+
See [CHANGELOG](docs/CHANGELOG.md) for full version history.
|
|
422
|
+
|
|
395
423
|
## Development
|
|
396
424
|
|
|
397
425
|
```bash
|
|
@@ -411,6 +439,14 @@ bun test
|
|
|
411
439
|
bun run lint
|
|
412
440
|
```
|
|
413
441
|
|
|
442
|
+
## Recent Changes (v0.3.0)
|
|
443
|
+
|
|
444
|
+
- **System Prompt Builder**: New modular prompt system with modes, tiers, and providers
|
|
445
|
+
- **Module Restructure**: Consistent internal organization with improved imports
|
|
446
|
+
- **Solid.js TUI**: Fully migrated to Solid.js + OpenTUI (removed legacy React/Ink)
|
|
447
|
+
|
|
448
|
+
See [CHANGELOG](docs/CHANGELOG.md) for complete version history.
|
|
449
|
+
|
|
414
450
|
## Documentation
|
|
415
451
|
|
|
416
452
|
- [Changelog](docs/CHANGELOG.md) - Version history and changes
|