惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Y
Y Combinator Blog
博客园_首页
有赞技术团队
有赞技术团队
博客园 - Franky
腾讯CDC
G
Google Developers Blog
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
D
Docker
The GitHub Blog
The GitHub Blog
MyScale Blog
MyScale Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
U
Unit 42
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - vggg/agent-project-bootstrap: Scaffold a multi-a...
vggg · 2026-05-27 · via Hacker News - Newest: "AI"

Scaffolds a multi-agent project setup from templates. As of v1.0 the pattern is runtime-agnostic (per ADR-001): a single runtime-neutral persona.yaml hydrates working personas on whatever AI coding agent you run — Claude Code, code-puppy, or anything else — at the highest fidelity that runtime supports. It started as a Claude Code plugin and remains fully compatible with it.

Three project modes are available:

  • vault-project — the original lean pattern. Vault-based five-agent project (librarian + two devs + analyst + designer), suitable for solo / local-team work where all collaborators share the same personal vault.
  • collab-repo-project — the Option A pattern. Emits a dedicated collab repo per project (CONVENTIONS, COORDINATION, agent manuals, handoffs, decisions, project wiki) separable from any personal vault. Designed for projects with multiple remote collaborators who shouldn't have access to each other's personal substrate.
  • join-collab-project — walks a new human collaborator through joining an existing collab repo: clone, claim a persona, set git identity, validate with a "hello" PR.

All emitted files use {{placeholder}} tokens you fill once; nothing is hardcoded to a specific project.

Two generations — which path to use

This repo currently contains two scaffolding flows. Knowing which you're on avoids confusion:

  • Runtime-agnostic path (v1.0+, current direction). Driven by the neutral entrypoints START.md → ORCHESTRATE.md (set up) / PARTICIPATE.md (join), a machine-readable manifest.yaml + persona.yaml per persona, and per-runtime adapters. This is what runs on both Claude Code and code-puppy (see Runtime support and USING-WITH-CODE-PUPPY.md). The collab-repo-project mode below is the flow this path generalizes — for a new multi-runtime or remote-collab project, prefer the runtime-agnostic path.
  • Legacy emit modes (v0.3.x). The three {{placeholder}}-template modes below (vault-project, collab-repo-project, join-collab-project) are the original Claude-Code-only flows. vault-project and join-collab-project have not yet been ported to the runtime-agnostic architecture (tracked in STATUS.md); they still emit the AGENT.md-template world rather than persona.yaml + adapters.

If you only run Claude Code and want the simplest thing, the legacy modes still work. If you run code-puppy (or want enforced Tier-3 guardrails, or multiple runtimes), use the runtime-agnostic path.

When it's useful

  • You're running multiple Claude Code sessions in parallel on the same long-lived project
  • You want a knowledge layer (research findings, decisions, reconciliation log) that lives separate from the codebase
  • You're a solo or near-solo developer who coordinates with several specialist agents rather than a human team
  • You've used multi-agent Claude Code before and want a repeatable starting point instead of rebuilding config files from scratch each time

When it's overkill

  • One-shot or throwaway tasks (a single agent session is simpler)
  • Projects where you don't need persistent memory across sessions
  • Team setups where human engineers handle coordination and you only need one agent at a time

What gets generated

vault-project mode

Vault structure (Obsidian, git-tracked):

_meta/
  CONVENTIONS.md          # tool hierarchy + wikilinks rules
  PERSONAS/
    IRIS.md               # librarian role definition
    DAVE.md               # dev agent 1
    KRIS.md               # dev agent 2 (optional)
    VERA.md               # analyst
    IVY.md                # designer
CLAUDE.md                 # Iris session guide
projects/<project>/
  CLAUDE.md               # project brief (open threads, key decisions)
  COORDINATION.md         # cross-agent protocol (handoffs, ADRs, dev log, branching)

Workspace files (one per agent, checked into their respective repos or directories):

workspaces/
  dev/CLAUDE.md           # engineering guide (used by both dev agents)
  analyst/CLAUDE.md       # analyst session guide
  designer/CLAUDE.md      # designer session guide

collab-repo-project mode (new in v0.3.0)

Collab repo structure (a dedicated GitHub repo, separate from your code repo):

README.md                 # project overview
CONVENTIONS.md            # repo-wide rules (identity, labels, routing, tool hierarchy)
COORDINATION.md           # multi-persona protocol + Hot files section
CLAUDE.md                 # entry pointer for any Claude Code session
BOOTSTRAP.md              # collaborator-facing onboarding
BOOTSTRAP-ADMIN.md        # owner-only operations (optional trust-gating runbook)
agents/
  <persona-slug>/
    AGENT.md              # per-persona operating manual
  librarian/
    AGENT.md              # always emitted by default
    FAILOVER.md           # centralized-with-failover runbook
_handoff/                 # cross-persona async messages
decisions/                # project-level decisions + ADR pointer stubs
findings/                 # investigations, dev logs, UAT, research
wiki/                     # synthesised by the Librarian

Three persona archetypes are supported, distinguished by runtime:

  • dev — human-triggered Claude Code sessions on the collaborator's machine
  • autonomous-event — GitHub Actions on a webhook (e.g. PR Reviewer, Backtest Runner)
  • autonomous-cron/schedule skill on someone's machine (e.g. PM+UAT, Librarian)

Slash commands (both modes)

Slash commands (installed globally, available to every Claude Code session):

commands/
  vc.md                   # `/vc` — vault commit workflow with agent-prefix convention

Runtime support (v1.0, runtime-agnostic)

Personas are defined once in a runtime-neutral persona.yaml (identity, abstract capabilities, scope, session ritual). Each runtime maps those abstract capabilities onto its real tools via an adapter — the only runtime-specific surface. Adding a runtime means adding an adapters/<runtime>/ folder and touching nothing else.

A persona always runs at the highest tier its runtime supports (the capability ladder), and degrades gracefully:

Tier Runtime Mechanism Enforcement
3 Claude Code (v1.1) or code-puppy native sub-agents (Claude .claude/agents/<slug>.md; code-puppy JSON agents) capabilities enforced via a tool allow-list — whole-tool denials are real (a read-only persona genuinely cannot write/run shell); sub-tool denials instructed
2 Claude Code persistent CLAUDE.md persistent session context; capabilities instructed
1 anything in-prompt persona re-read each turn; self-enforced

New in v1.1: the Claude adapter renders either Tier 2 (CLAUDE.md) or Tier 3 (a native subagent with an enforced tool allow-list), selected by a runtime-neutral adapters.claude.tier config (auto | 2 | 3, default auto; auto uses Tier 3 when the session can host subagents and falls back to Tier 2 otherwise). So enforced guardrails are no longer code-puppy-only.

Key files:

  • START.md / ORCHESTRATE.md / PARTICIPATE.md — neutral entrypoints (front door + the two role recipes; routing is by directory state, not a human choice).
  • adapters/{generic,code-puppy,claude}/HYDRATE.md — per-runtime mappings (generic is the mandatory Tier-1 fallback).
  • references/{capability-vocab.v1,persona.schema,manifest.schema}.md — the canonical spec.

See ADR-001 for the full design.

Installation

/plugin install https://github.com/vggg/agent-project-bootstrap   # from GitHub
/plugin install /path/to/agent-project-bootstrap                  # from a local clone (e.g. for development)

The /plugin install command syntax may evolve as Claude Code matures. If the above fails, check the Claude Code docs for the current install command format.

On code-puppy? It doesn't auto-discover the Claude skill format — see USING-WITH-CODE-PUPPY.md for the invoke-by-file-path quickstart.

Usage

After installation, tell Claude something like:

"Use the agent-project-bootstrap skill to set up a new project in collab-repo-project mode."

Claude will ask for the inputs the mode needs (project name, repos, personas, etc.) and emit all files with placeholders substituted. Each mode is self-contained — SKILL.md has a section per mode you can read independently.

Choosing a mode:

  • Use vault-project if you're the only operator (or all collaborators share your vault) and want the simplest setup.
  • Use collab-repo-project if multiple remote collaborators need to see each other's work and you want trust isolation between them and your personal substrate.
  • Use join-collab-project if you're a new collaborator joining a project someone else set up.

Customisation

The templates use archetype names for agents (Iris, Dave, Kris, Vera, Ivy). These are just names — rename them to whatever fits your working style. The structural patterns (three-tier write ownership, handoff protocol, COORDINATION.md as single source for cross-agent rules) are what carry the value, not the names themselves.

The dev-2 slot (Kris) is explicitly optional. Single-developer projects skip it.

Acknowledgements

This skill codifies a multi-agent coordination pattern developed through real iteration on a software project. The goal is to make the setup repeatable without requiring each new project to rediscover the same structural decisions.


MIT License · vggg