announcements

linkagencygrowth [ spammer ] 2026-06-19T04:06:26.435749Z

👋 Hello, team!

jwind 2026-06-19T13:23:30.413459Z

https://github.com/jaketothepast/codetutor Building an emacs mode (through AI at first) to help teach me concepts. Trying to flip the script of AI building everything on its head. Building an agentic harness that works for me instead of doing the work for me. A few highlights. 1. Spec mode will open a template and then you write the spec. As you save in Emacs, the tutor will review the spec and review any relevant code to try and help you. 2. Open buffers are passed to the prompt, and the AI tries to look at what you're doing and guide you along the way based on the project.md file and the spec files that it can see 3. The tutor has a view of the project through Tree Sitter project symbol tables, trying to help guide project structure in the large as well Hope someone can use it! I've been using it for both Clojure and some C++ work I've been doing.

❤️ 3
djanus 2026-06-19T13:59:15.845359Z

Being one of #C0B7Q4XRM1U, I applaud every effort to have AI help you learn instead of doing things for you. Fingers crossed for this!

2026-06-19T16:18:47.863479Z

Awesome idea and execution - congrats on the release! Curious if you have plans to add any other editors to this in the future

jwind 2026-06-19T17:51:16.139789Z

@jcoyle yes! I want to do VSCode next

2026-06-19T19:12:15.683809Z

that is the response i was looking for haha. I use VSCode and would definitely try/use this. What kind of costs have you experienced with the API usage?

jwind 2026-06-19T19:44:57.759389Z

Fireworks AI is negligible! I left it open so you can configure. Going to add local models as well

jwind 2026-06-19T19:45:07.913699Z

It's like 3 cents a prompt right now

1
borkdude 2026-06-19T13:40:39.268599Z

babashka Babashka CLI: automatic help and shell completions https://github.com/babashka/cli gained two long-requested features across v0.10.69-v0.11.73: • Automatic --help/`-h` for dispatch (subcommand) CLIs. • Dynamic shell completions for bash, zsh, fish, powershell and nushell: subcommands, options, option/positional values and file arguments. • The nested command-tree notation is now exposed for users Available as of v0.11.73: org.babashka/cli {:mvn/version "0.11.73"} Blog post with an example: https://blog.michielborkent.nl/babashka-cli-help-and-completions.html

🤩 8
🎉 15
plexus 2026-06-19T13:58:25.018859Z

good stuff! I wonder if you got some inspiration somewhere 😄

😆 1
teodorlu 2026-06-19T14:13:56.593439Z

source <(./mygit.clj org.babashka.cli/completions snippet --shell zsh)
means one shell command for each Babashka CLI that needs to register its completions. Would it be feasible to provide global completions on all bb