HN user

zeapo

117 karma
Posts24
Comments10
View on HN
www.youtube.com 4mo ago

Open Source Sailing Block [video]

zeapo
2pts0
github.com 4mo ago

Show HN: Swarmit – Long-term planning for AI agents

zeapo
2pts1
play.weft.sh 6mo ago

Show HN: Weft – A reactive and interactive Python experience

zeapo
6pts4
www.youtube.com 3y ago

Hacking a weird TV censoring device

zeapo
1pts0
stencel.io 5y ago

Build cheapest Kubernetes i7 cluster

zeapo
1pts0
bugs.launchpad.net 5y ago

Geoclue stopped working due to mozilla's API rate limit

zeapo
2pts1
www.youtube.com 5y ago

Why 111-1111111 is a valid Windows 95 key

zeapo
3pts0
github.com 5y ago

A CISA made tool to detect compromised accounts on Azure

zeapo
3pts2
www.brainboard.co 5y ago

A Terraform wysiwyg

zeapo
3pts0
www.iiis-spring21.org 5y ago

International Multi-Conference on Complexity, Informatics and Cybernetics

zeapo
1pts0
www.googleplusdatalitigation.com 5y ago

Google Plus Profile Litigation

zeapo
2pts0
www.arm.com 6y ago

Arm to Transfer Its IoT Service Group to SoftBank

zeapo
1pts0
ane.github.io 6y ago

Software customization is hard (2018)

zeapo
1pts0
phys.org 6y ago

A quantum of solid: A glass nanoparticle in the quantum regime

zeapo
3pts0
www.youtube.com 7y ago

Bypassing Google Drive limitations for unlimited storage

zeapo
1pts0
medium.com 8y ago

Erlang: raspberry pi cluster vs. Xeon VM (2016)

zeapo
22pts1
wattsense.com 8y ago

Energy Challenges in Building Management Systems

zeapo
1pts0
arxiv.org 8y ago

Fast Heavy hitters algorithm (2016)

zeapo
2pts0
github.com 8y ago

Parsing HTML at the command line

zeapo
3pts0
github.com 8y ago

Tikzcd-editor – A simple editor for creating commutative diagrams

zeapo
2pts0
twitter.com 9y ago

Elon Musk launching “x.com”

zeapo
10pts2
viivo.com 9y ago

Viivo End of Life announced

zeapo
1pts1
uk.businessinsider.com 9y ago

Programmers confess unethical, illegal tasks asked of them

zeapo
181pts184
www.sitepoint.com 9y ago

Inside Java 9 – Performance, Compiler, and More

zeapo
2pts0

Hey,

I've been abusing Claude Code for the last few months; however, something that always slowed me down is task management, a real one.

I built Swarmit for a simple objective: ask Claude to plan and organize itself using a proper task management system. Since building it, it creates tens of epics and hundreds of tasks, and has been able to reliably use them to manage parallel agents, manage dependencies among tasks, and, most importantly, not forget about what it was supposed to do.

Why not GitHub/Jira/Asana? This lets you do everything locally. It’s meant to allow Claude to quickly organize itself without reaching external services or polluting your official issue tracking with AI-generated micro-tasks.

I added a simple TUI that allows you to quickly see what the agents are doing, to comment and interact with the tasks. Started working on Insights so that agents can add some gotchas.

I hope you'll enjoy using it as much as I do :)

PS: 100% dogfooded, and my first fully claude code built tool.

Glad you like it.

I used rust 'cause of Ruff. They have an outstanding set of crates https://github.com/astral-sh/ruff/tree/main/crates

The ones I use: - python_parser, allows me to load the python source code and detect any parsing errors (returned to the frontend) - python_ast, allows me to extract the identifiers (variable names, function names, etc) - python_semantic, allows to do scope analysis and understand relationships between identifiers

In the first prototype I used Python's ast and symtable libs. However, I really wanted to rely on the speed of Ruff's implementation and Rust's speed.

Thanks for the feedback. You're right, it's part of the long term goals.

I'd like to keep the center of the screen clutter free and add side-bars later on with tooling. Among them, an inspector just like what PyCharm has when opening a notebook. For globals it's quite simple to add, however to inspect the content of a single compound statement it might be a bit tricky (if you've got ideas I'd love to learn more).

Some of the next "urgent" features are improving the code state management (history), having multiple sessions, being able to save them, etc. Maybe adding a way to bring the data online somehow.

I noticed that redshift stopped working lately due to geoclue unable to get any location, it by default uses a mozilla location service which is failing lately with a 403.

My solution is to set manually the lat/lon in redshift configuration.

No typo there. When we talk about vectors we mean "column vector". As it's easier to read horizontally (and takes less place in a paper), most of the time we write x^T = {a, b, c} rather than writing them in a column shape.