Spine Swarm: Multi-Agent AI System on Visual Canvas for Non-Coding Projects
Spine Swarm is a multi-agent AI system that operates on an infinite visual canvas designed for complex non-coding projects. The founders argue that chat interfaces are inadequate for complex AI work because they're linear, while real projects aren't linear. They built a workspace where work structure is explicit and user-controllable.
Core Architecture
The system uses blocks as abstractions on top of AI models. There are dedicated block types for:
- LLM calls
- Image generation
- Web browsing
- Apps
- Slides
- Spreadsheets
Blocks can be connected to any other block, with connections guaranteeing context passing regardless of block type. The system is model-agnostic, allowing workflows to move between different AI models within a single project.
Agent Operation
When a user submits a task, a central orchestrator decomposes it into subtasks and delegates each to specialized persona agents. These agents:
- Operate on canvas blocks
- Can override default settings (model and prompt) for each subtask
- Pick the best model for each block
- Sometimes run the same block with multiple models to compare outputs
- Work in parallel when subtasks don't have dependencies
Agents can pause execution to ask for user clarification or feedback before continuing. Once agents produce output, users can select a subset of blocks and iterate on them through chat without rerunning the entire workflow.
Technical Advantages
The canvas provides agents with a persistent, structured representation of the entire project that any agent can read and contribute to at any point. This addresses context degradation issues in typical multi-agent systems by:
- Storing intermediary results in blocks rather than holding everything in memory
- Creating explicit structured handoffs designed for consumption by other agents
- Allowing agents to run longer while keeping context windows clean
Users can dispatch multiple tasks at once, and the system will queue dependent ones or start independent ones immediately.
📖 Read the full source: HN AI Agents
👀 See Also

Claude Code's Illusion of Finished Work: Why Reviewing the Agent's Path Matters More Than the Diff
Claude Code can produce a clean diff, passing tests, and a good summary—yet still miss real behavior, security concerns, or architecture constraints. The author argues that reviewing the chain of actions (plans, files read, commands run, test output) is now essential, not just the final diff.

Claude Pulse Browser Extension Surfaces Token Counts, Cache Timers, and Rate Limits on Claude.ai
Claude Pulse is a client-side Chrome extension that adds a real-time dashboard to Claude.ai showing per-message token counts, total context usage, prompt cache expiry timer, and rate limit progress bar. Also includes chat export to Markdown.

AgenticStore MCP: Python Toolkit for Claude Desktop with 27 Local Tools
AgenticStore MCP is an open-source Python toolkit that replaces multiple MCP servers with a single installation, giving Claude Desktop 27 local tools including persistent memory, web search, and repo auditing without requiring Docker or Node.js configuration.

Ante: A Single-Binary Coding Agent That Runs Offline
Ante is a self-contained Rust binary that works like Claude Code or Codex but with zero runtime dependencies and full offline support. It scores 82.7% on Terminal-Bench 2.1 using DeepSeek V4 Flash.