HN user

jerpint

1,215 karma
Posts26
Comments551
View on HN
www.woltspace.com 1mo ago

Show HN: Woltspace – a lodge for your coding agents

jerpint
2pts0
github.com 3mo ago

Show HN: Clangine-de-Poitrine

jerpint
3pts1
www.jerpint.io 4mo ago

The paradox of shipping more while coding less

jerpint
1pts0
www.jerpint.io 4mo ago

Humans.md

jerpint
2pts1
www.jerpint.io 5mo ago

Coding at the Speed of Thought

jerpint
1pts0
www.jerpint.io 5mo ago

I Maintain My Blog in the Age of Agents

jerpint
3pts1
www.jerpint.io 5mo ago

I don't write code anymore – I sculpt it

jerpint
45pts62
www.jerpint.io 7mo ago

The Rise of the 0.1x Engineer

jerpint
3pts0
www.jerpint.io 8mo ago

Different Models, Same Slop?

jerpint
2pts1
github.com 1y ago

Show HN: Stop re-explaining context to every LLM (Git-based context engineering)

jerpint
2pts0
github.com 1y ago

Show HN: I built a context-engineering CLI/MCP tool

jerpint
2pts0
www.jerpint.io 1y ago

Python's 'shelve' is useful for LLM debugging

jerpint
1pts0
www.arxiv-txt.org 1y ago

Show HN: ArXiv-txt, LLM-friendly ArXiv papers

jerpint
22pts11
www.jerpint.io 1y ago

Show HN: Realtime HTML Rendering with LLMs

jerpint
1pts1
www.jerpint.io 1y ago

I had different agents play 'The Password Game' – they didn't do so well

jerpint
2pts0
www.jerpint.io 1y ago

"The Password Game" Is a Solid Benchmark for Multimodal Agents

jerpint
1pts0
www.jerpint.io 1y ago

Performance of LLMs on Advent of Code 2024

jerpint
135pts92
www.jerpint.io 2y ago

ControlNet Game of Life

jerpint
72pts6
www.jerpint.io 2y ago

Growing Snowflakes with Neural Cellular Automata

jerpint
2pts0
github.com 2y ago

Show HN: RAGTheDocs, one-click deploy RAG for any readthedocs website

jerpint
1pts0
www.jerpint.io 2y ago

MNIST Clock

jerpint
2pts1
www.jerpint.io 3y ago

GPT4 Can’t Play Wordle

jerpint
1pts1
www.jerpint.io 3y ago

Making Snowflakes with Cellular Automata

jerpint
5pts0
www.jerpint.io 3y ago

Show HN: I tried pair-programming deep learning with ChatGPT

jerpint
1pts0
www.jerpint.io 3y ago

Teaching ChatGPT about the birds and the bees

jerpint
1pts0
www.jerpint.io 3y ago

Mnist VAE Clock

jerpint
1pts1

Author here - I agree that to learn the best thing is to implement and fail along the way. My point was I would never professionally opt to write a sorting algorithm instead of using the builtin sort() most languages come equipped with

Best is very subjective depends what you want it to do and if you want to fine tune and how big you consider small

I like the concept and have built my own context management tool for this very purpose!

https://github.com/jerpint/context-llemur

Though instead of being a single file, you and LLMs cater your context to be easily searchable (folders and files). It’s all version controlled too so you can easily update context as projects evolves.

I made a video showing how easy it is to pull in context to whatever IDE/desktop app/CLI tool you use https://m.youtube.com/watch?v=DgqlUpnC3uw

I also developed yet another memory system !

https://github.com/jerpint/context-llemur

Although I developed it explicitly without search, and catered it to the latest agents which are all really good at searching and reading files. Instead you and LLMs cater your context to be easily searchable (folders and files). It’s meant for dev workflows (i.e a projects context, a user context)

I made a video showing how easy it is to pull in context to whatever IDE/desktop app/CLI tool you use

https://m.youtube.com/watch?v=DgqlUpnC3uw

The way I see it is that context evolves somewhat orthogonally to code. But you still want to track it in similar ways. Having git under the hood makes it easy to track its evolution and undo/diff things LLMs might decide to change, but also means that tracking your todos and new feature ideas don’t pollute your codebase

I wrote a tool for this, which allows you to co-create and maintain a context repository with your LLMs

https://github.com/jerpint/context-llemur

CLI for the humans, MCP for the LLMS. Whatever is in the context repository should be used by the LLM for its next steps and you are both responsible for maintaining it as tasks start getting done and the project evolves

I’ve been having good success with it so far

Funny enough, I’m building a tool that does basically what the author describes, but with a bit more software engineering driving it (context-llemur)

https://github.com/jerpint/context-llemur

The idea is to track all of the context of a project using git. It’s a CLI and MCP tool, the human guides it but the LLM contributes back to it as the project evolves

I used it to bootstrap the library itself, and have been using it more and more for context management of all sorts of things I care about

I’ve been building a context-engineering tool for collaborating with LLMs. The CLI is for the human and the MCP is for the LLM, but they all map to the same core commands

https://github.com/jerpint/context-llemur

I’ve actually bootstrapped ctx with ctx and found it very useful !

It basically stops me from having to repeat myself over and over to different agents

It’s been useful though given the authors popularity I suspect it’s only a matter of time new LLMs become “more aware” of it