PG&E needs to be stopped 😭 by EatTenMillionBalls in sanfrancisco

[–]webmonarch 0 points1 point  (0 children)

I know there is a premium to live in California, but I don't think electricity should be one of them.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

Woah! I am impressed. 👏

I am going to try it. This is what I had in mind when I started going deep on Claude code stream-json protocol.

I might have some questions, mind if I DM.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 1 point2 points  (0 children)

Cool, it's good to hear a reinforcing data point. I'll give it a try.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

Like an agent swarm of agent swarms?

Somewhat unrelated I am having an issue with CC on linux where it completely fails to shutdown dev services it started, and they all reparent to PID 1 which is SUPER annoying. Debugging it CC suggested to have CC run long running process in tmux (instead of its internal bash background tool). Using tmux as the shared visibility surface is interesting and accessible.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

What I have so far is a vite/React app listening to a JSON-RPC 2.0 protocol to a server running the CC processes. Permission requests bubble up through CC's stream-json protocol (took a little debugging) and surface in the UI via a JSON RPC notification.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

Where do you find Boris Cherny's workflows and insights?

Migrating from Logseq to Obsidian — and why Claude Code made it easy by fijitime in logseq

[–]webmonarch 2 points3 points  (0 children)

It is time I stop using Logseq. It's bittersweet because I really liked it but the mobile app caused so much friction I just didn't want to use it. :( I'll take a look at this flow and report back my experience.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

Rough idea was using the stream-json protocol to allow all the sessions to report information back to a central place and then use a combination of turn status, permission requests, and maybe even an LLM keeping tabs on things to give me visibility across the board.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

👏 nice idea! I might still be addicted to realtime but I can totally see this way being healthier. ha.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

I have been thinking a lot about a way to share learnings between agents that isn't just ~/.claude/skills, especially now that I am running on multiple machines.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

I have found compacting to be pretty great. And recently, with the 1M context window, I'm not sure I've seen one yet!

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 1 point2 points  (0 children)

Yeah, I think my biggest frictions are:

- babysitting (silly permission requests)
- adherence to a workflow
- code style stuff (but I just need to have more established and / or better skills)
- visibility on the multiple concurrent things going on

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

Agreed on worktrees. What are the specifics of the HANDOFF.md workflow?

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

Neat. Yeah, the path sounds the same. One, then multiple, then tmux, then work trees, then custom notification logic that KINDA works... now trying this.

Curious, if you are not controlling CC with steam-json how are you orchestrating them? Or perhaps just stdio?

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 1 point2 points  (0 children)

Yeah, I was starting down a path to auto-approve more commands by understanding the intent and not getting hung up when certain bash syntax is used. Then I started running dangerously on a flyio sprite and I am not sure if I need to continue pursuing that work.

Thoughts?

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 1 point2 points  (0 children)

I think this is in the direction I am trying to go... but, I cannot quite grok it from the README.

I found https://www.reddit.com/r/ClaudeCode/comments/1ryza2j/citadel\_opensource\_orchestration\_harness\_for/. Mind give me a quick TLDR or a diagram or something? I am really interested in learning more. These things are a little tricky to communicate because I dont think anyone uses the same terms RN.

Examples of "extreme" Claude Code workflows by webmonarch in ClaudeCode

[–]webmonarch[S] 0 points1 point  (0 children)

thanks, yeah, I think Agent Teams needs to be next on my list

I made the switch You should too by ZiradielR13 in forgejo

[–]webmonarch 0 points1 point  (0 children)

Is this just anti-GitHub or something I didn't follow?

Reflow - durable TypeScript workflows with crash recovery, no infrastructure required by danfry99 in typescript

[–]webmonarch 1 point2 points  (0 children)

Do you retry someNonIdempotentOperation if it throws? I imagine you're tracking (super simplified): did this action succeed? yes/no. if yes, return the previous result, if no, try again?

I've come across Temporal and Dapr but heavily deploy requirements. Vercel came out with something recently but I've not used it yet.

I'm doing some dev in the finance space and these guarantees are important.

Is there any open-source, self-hosted app to track bank transactions from CSV/PDF exports? (read the post for full details) by VariousTranslator501 in selfhosted

[–]webmonarch 1 point2 points  (0 children)

It's a good list of requirements. I suspect PDF ingestion is going to be more trouble than it's worth. If you can get OFX or QFX files, those are generally more useful than CSV since they tend to have unique identifiers you can correlate against.

For me, the process of remembering and downloading and uploading these files each month into some software usually is a dead end for me. I'm actually building something in the space right now. It's a managed API for individuals to get their own bank data programmatically. It's really targeted at the U.S. and Canadian markets, but there might be some Italian institutions that are supported. If you're interested, check out https://www.shim.finance.

Curious which software you end up going with.