An open API service indexing awesome lists of open source software.

https://github.com/frixaco/aitetsu

Don't wanna pay for Cursor, Claude Code, Codex, so I'm building my own alternative
https://github.com/frixaco/aitetsu

Last synced: about 1 year ago
JSON representation

Don't wanna pay for Cursor, Claude Code, Codex, so I'm building my own alternative

Awesome Lists containing this project

README

          

## My personal AI assistant in my terminal

Basically, worse version of "Claude Code", "Codex", "OpenCode" but it is mine!

### TODO

- [ ] add `check_aws_lamda_logs` tool that can check CloudWatch logs of Lambda functions (for work)

### Demo

https://github.com/user-attachments/assets/2e495400-4b43-41ce-8af8-ef19aa2ce661

### Brainstorming

**Saving tokens**:

- Have "Plan" mode like Cline, where files have comments and blank lines stripped
- Stripping comments and blank lines doesn't seem effective most of the time and saves only few tokens
- Reasons from putting whole file contents:
- Edit diffs - IMPORTANT, REQUIRED
- Follow style - What if I analyze codebase and generate bunch of rules instead,
then I extract only relevant nodes from AST for the code that needs modifying and send those blocks to LLM
- On the other hand, relying AST doesn't seem useful when LLM needs to add a new node unrelated to the relevant nodes (e.g. create a constant at the top of the file)