announcements

Wout Neirynck 2026-01-20T09:38:47.599929Z

https://www.monkeyci.com v0.23.0 - run your CI/CD pipelines in style - Introduced blocked jobs: wait for user approval before proceeding - Expire unused free credits after one year (to avoid endless accumulation) - Improved log search - Switched to https://github.com/cjohansen/portfolio (from devcards), for better React 19 support - Better handling of build cancellations - Docs updates - Dependency upgrades

πŸš€ 5
πŸŽ‰ 4
Dimitar Uzunov 2026-01-20T13:43:06.407349Z

the holy grail of CI for me is builds I can REPL-in, inspect and debug and continue. I’ve done this on the usual CI software by intentionally not returning after failure, but I wonder if there is first class support for this in MonkeyCI?

Wout Neirynck 2026-01-20T13:48:02.152689Z

Not yet. MonkeyCI supports unit tests on your build scripts already. But there are plans to add repl functionality in the future. I haven't really thought this through, but I'm thinking it should be possible to start a repl using the cli, or allow external repls to connect to a running build.

πŸ‘ 1
Wout Neirynck 2026-01-20T13:49:48.772909Z

Seems mainly something for local builds though, not sure if this should be opened up when running builds via the web app (for security reasons). I'd have to investigate if this can be secured with a key somehow.

Dimitar Uzunov 2026-01-20T14:24:54.709849Z

its very useful for deploy-steps as often the environment can’t be replicated perfectly locally

Wout Neirynck 2026-01-20T14:36:26.592759Z

Indeed. I've created https://github.com/monkey-projects/monkeyci/issues/351 for further investigation.

BuddhiLW 2026-01-20T14:15:01.386279Z

hive-mcp: LLM Memory + Multi-Agent Coordination Built an MCP server that gives Claude persistent, project-scoped memory and parallel agent coordination. *The Clojure bits:* β€’ DataScript for entity persistence (lings, tasks, claims) β€’ core.logic for conflict detection & deadlock prevention β€’ mcp-clojure-sdk for the protocol layer β€’ ~29k LOC of Clojure, REPL-driven throughout β€’ boostrapped with clojure-mcp *Key patterns:* 1. Progressive crystallization (5-tier memory TTL) 2. Advisory locking with queue-based conflicts 3. Token hierarchy (expensive coordinator -> cheap drones via OpenRouter) It's Emacs-integrated but the Clojure backend is the interesting part - especially using core.logic for "is this file claimed by someone else?" (negation-as-failure) and cycle detection. Blog post with architecture details: https://www.buddhilw.com/posts-output/2026-01-20-hive-mcp/ Repo: https://github.com/hive-agi/hive-mcp Built over 28 days, largely self-hosted (Claude using hive-mcp to build hive-mcp). Feedback welcome, especially on the core.logic patterns!

πŸ”₯ 12
BuddhiLW 2026-01-20T17:39:05.007489Z

I plan to record a video showing how to setup it properly, because there are some deps, like chroma which I use to store memories, instead of text-in-files etc - so it's light and LLMs can do semantic search - but, in general, tools yield safe degradation, and will use some fallback (like using org-kanban, instead of in-memory kanban, etc) if dependency is not provided. Everything infra that is needed is in docker-compose.yaml Then, I will proceed to give a demo and put in youtube. Current the hive-mcp comes with ~170 tools, it has builtin in-memory kanban for autonomous project-managements; tools that make possible bidirectional-communication among agents; multi-agent spawning; and much more. For using the swarm feature (multi-agent), you should setup bb-mcp which is the work-around I created to spawn lightweight JVM that attach to a full-blown JVM for lings (agents spawned by the "hivemind" e.g., the claude that is talking to you and coordinating the project with you). I have spawned up to 15 lings at once, with plenty of headroom. I will comment here to keep you posted πŸ™πŸ˜.

❀️ 3
floscr 2026-01-21T07:19:41.050609Z

Sounds really interesting! Tried it and start doesnt work:

Execution error (FileNotFoundException) at hive-mcp.server/eval228$loading (server.clj:1).
Could not locate io/modelcontext/clojure_sdk/stdio_server__init.class, io/modelcontext/clojure_sdk/stdio_server.clj or io/modelcontext/clojure_sdk/stdio_server.cljc on classpath. Please check that namespaces with dashes use underscores in the Clojure file name.

Full report at:
/tmp/clojure-3959416240507406413.edn

BuddhiLW 2026-01-26T02:12:04.078689Z

https://www.youtube.com/watch?v=eE8t9IWD94I

BuddhiLW 2026-01-26T02:24:06.538839Z

Install walk-through βœ…

BuddhiLW 2026-01-22T13:06:57.240829Z

Hello @services799! It is. I'm really excited to share it open sourced. So, for starters, probably there is two things: Currently, the project uses forks of some projects with some changes on them (to enable things like the piggyback behavior - bidirectional communication - among the hive). I opened PRs, but some haven't been accepted yet etc. So, you will have to clone it recursively. That's probably why you are seeing that error. The second thing is that the project has an Emacs connection part. So, you will have to load the right config locally - although I'm working to put it in MELPA at some point. I'm currently updating the docs. It's a little lengthy process to set it up completely. So the hive is writing the multi-step install process in a wiki. As soon as it's in the remote, I will let you know, ok?

BuddhiLW 2026-01-22T17:32:48.142259Z

# 1. Install CLI and MCP server
go install 
go install 

# 2. Register MCP server with Claude
claude mcp add hive-setup --scope user -- hive-setup-mcp
Then, launch Claude and ask her to help you set up hive-mcp . I created a CLI (with mcp support) to help you set up hive-mcp. https://github.com/hive-agi/hive-mcp-cli If you need any help, tell me. The video will be up later today, I believe. I will record as soon as I get home and get it to youtube

BuddhiLW 2026-01-22T17:37:22.067339Z

Please check out the updates in https://github.com/hive-agi/hive-mcp Since it's more friendly now to install too. Cleaned up deps to use fixed versions (no need to clone recursively, as mentioned previously) and make it more reproducible setup by using env vars throughout the install process (and created a wiki with a lot of docs) You can feed it too claude, as well, and she will probably be able to figure everything up. docker-compose pulls most of infra needed to run locally too. I would go with a mix of cloning the repo and using hive-setup-mcp . Will be better guide than myself haha πŸ™‚ Thanks for trying out hive-mcp . I hope you enjoy it, as much as I do