CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Agentloopkit

abhiyoheswaran1/agentloopkit
STDIOregistry active
Summary

Gives Claude read-only access to your AgentLoopKit harness: task contracts, verification reports, handoff summaries, safety policies, and loop status. If you're running AgentLoopKit's acceptance layer for coding agents and want Claude to inspect what tasks are active, what verification evidence exists, or what the review-readiness score shows, this server surfaces that state without requiring manual file pastes. It reads from the `.agentloop/` directory structure that `agentloopkit init` creates. Useful when you want Claude to reason about task scope, gate compliance, or handoff artifacts while staying inside the same loop workflow your local CLI commands maintain. It's a companion to the NPX tool, not a replacement.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Registryactive
Packageagentloopkit
TransportSTDIO
UpdatedJun 10, 2026
View on GitHub

AgentLoopKit

AgentLoopKit logo

A drop-in engineering loop for coding agents.

An open-source Baseframe Labs developer tool.

Your coding agent can write code. AgentLoopKit helps you decide whether that code is reviewable, verifiable, and merge-ready.

It gives Codex, Claude Code, Cursor, OpenCode, Gemini CLI, GitHub Copilot CLI, and other coding agents a local acceptance layer: task contracts, safety rules, verification evidence, review-readiness scores, PR descriptions, and reviewer handoffs.

Vibe coding produces code. Agentic engineering produces auditable work.

AgentLoopKit workflow showing task contracts, verification reports, and handoff artifacts

The screenshots and terminal demo in this README are generated from committed sources in docs/assets/readme/ with Playwright and VHS.

What It Does

AgentLoopKit is a repo-level toolkit for developers using Codex, Claude Code, Cursor, OpenCode, Gemini CLI, GitHub Copilot CLI, and other coding agents.

Keep your agent, IDE, and CLI. AgentLoopKit gives those tools a repeatable local workflow:

  1. Specify the task.
  2. Constrain the risk.
  3. Implement the smallest useful change.
  4. Verify with real commands.
  5. Review the diff.
  6. Hand off with evidence.
  7. Ship only when the work is reviewable.

Run init inside an existing repository and AgentLoopKit creates:

  • .agentloop/ for tasks, reports, handoffs, gates, policies, templates, and agent instructions
  • AGENTS.md for agent-facing repo guidance
  • AGENTLOOP.md for the working loop
  • agentloop.config.json for local command and path settings

Generated AGENTS.md includes a specialist roster for product, CLI, template, verification, security, release, docs, compatibility, MCP, and repo-steward work. It helps future agent sessions split work without adding a background service.

Install

Use it with npx from the repository you want to configure:

cd /path/to/your/repo
npx agentloopkit init --dry-run
npx agentloopkit init

init writes files into the current directory. --dry-run previews the same plan and writes nothing.

After setup, non-init commands search upward for the nearest agentloop.config.json and use that folder as the AgentLoop root. You can run agentloop status, agentloop verify, or agentloop handoff from a nested source folder and still write tasks, reports, and handoffs to the initialized repo root.

Do not run init from your home directory unless you intend to configure your home folder. If you want local agent guidance but do not want to commit the generated files, use local-only mode:

npx agentloopkit init --local-only

--local-only writes the harness, asks Git for this clone's metadata directory, then adds a marked block to that clone's info/exclude for .agentloop/, AGENTS.md, AGENTLOOP.md, and agentloop.config.json. It does not edit .gitignore, global Git config, shell profiles, or other project files.

Check the published package explicitly:

npx --yes agentloopkit@latest version
npx --yes agentloopkit@latest init

For repeatable CI or team setup, replace @latest with a vetted version.

Pinned team usage:

pnpm add -D agentloopkit
pnpm agentloop init

Core Workflow

npx agentloopkit init
agentloop create-task --title "Fix login redirect bug" --type bugfix \
  --acceptance "Password-reset login redirects to the requested page" \
  --verification "npm test -- auth"

# Run Codex, Claude Code, Cursor, OpenCode, Gemini CLI, or another coding agent.

agentloop verify --task .agentloop/tasks/<task-file>.md --task-commands
agentloop ship --github-comment
agentloop prepare-pr

create-task sets the new contract as the active task. Use agentloop task set <path> only when you need to switch to another contract. After verification and handoff, use agentloop task done to close the active task before starting unrelated work.

Use agentloop status or agentloop next when an agent needs the next local action without reading every file:

npx agentloopkit status
npx agentloopkit status --brief
npx agentloopkit next

Terminal demo running AgentLoopKit init, task creation, task-aware verification, review-readiness scoring, PR preparation, review context, run history, and file intent lookup

The terminal demo is generated from committed VHS sources in this repository.

Dogfood Gate

AgentLoopKit uses its own loop in this repo. Contributors can run the same local self-check:

npm run dogfood

That command checks task-folder hygiene, current loop status, review gates, artifact inventory, maintainer reviewability, agent review context, and ProjScan health. It does not publish packages, create tags, post comments, read tokens, read .env contents, or run verification commands.

Use the stricter gate before a release or final handoff:

npm run dogfood:strict

Commands

The package exposes two binaries:

agentloop init
agentloopkit init
CommandPurpose
agentloop initGenerate the repo harness and config
agentloop doctorCheck setup health, commands, git state, and risk files
agentloop create-taskCreate a scoped task contract
agentloop task ...List, show, pin, update, archive, and inspect task state
agentloop statusShow active task, latest report, latest run, dirty files, and next step
agentloop nextPrint only the next recommended loop action
agentloop review-contextShow one read-only reviewability context snapshot
agentloop verifyRun configured checks and write a verification report
agentloop shipScore review readiness, write a ship report, and optionally print a PR comment
agentloop prepare-prGenerate a PR title, grouped body, and optional GitHub comment
agentloop summarizePreview a deterministic reviewer summary
agentloop handoffWrite a reviewer handoff summary
agentloop check-gatesCheck review evidence without running tests
agentloop runsList local ship, verify, and handoff run entries
agentloop show-run <id>Show one local run ledger entry
agentloop intent <file>Show which runs touched a file and why
agentloop maintainer-checkCheck whether an AI-assisted PR is reviewable
agentloop artifactsInventory local task, report, handoff, and badge evidence
agentloop reportWrite a local static HTML evidence report
agentloop badgeWrite a local SVG evidence badge
agentloop ci-summarySummarize CI context and existing AgentLoop evidence
agentloop release-notesDraft local release notes from repo evidence
agentloop release-checkCheck local release readiness without publishing
agentloop npm-statusCheck npm registry status without publishing
agentloop mcp-serverStart the read-only MCP stdio server
agentloop policy ...Read and compare local safety policies
agentloop install-agent <name>Add agent-specific instructions
agentloop list-templatesList bundled templates
agentloop completion <shell>Print shell completion scripts
agentloop versionPrint the CLI version

Clean up finished task contracts after verification and handoff:

agentloop task archive --status done --dry-run
agentloop task archive --status done

See docs/cli-reference.md for command examples, JSON modes, and safety notes.

Agent Setup

Install instructions for the agent you use:

agentloop install-agent codex
agentloop install-agent claude-code
agentloop install-agent cursor
agentloop install-agent opencode
agentloop install-agent gemini-cli
agentloop install-agent github-copilot-cli
agentloop install-agent all

AgentLoopKit writes repo-local Markdown instructions. When exact third-party config conventions are uncertain, it keeps the output generic instead of pretending to own another tool's setup.

Safety Model

AgentLoopKit is intentionally boring:

  • no postinstall scripts
  • no telemetry
  • no cloud backend
  • no database
  • no API keys
  • no hidden network calls
  • no reading .env contents
  • no destructive actions during install

Env files are reported by path only. Verification commands run only when you explicitly run agentloop verify.

agentloop ship reuses current verification evidence by default. Pass --run-verify when you want it to run verification as part of the readiness flow. Pass --github-comment when CI needs compact Markdown for a pull request comment. AgentLoopKit does not post the comment itself.

agentloop prepare-pr groups changed files by review area, including risk-sensitive paths, source, tests, AgentLoop evidence, docs, CI, config, and other files.

For narrower evidence history, agentloop verify --write-run and agentloop handoff --write-run can add their own local run records without changing the default command behavior.

agentloop status includes the newest local run ledger entry when .agentloop/runs/ exists, so agents can see the latest review-readiness or verification evidence without opening every report. Run ledger output uses safe display paths: .agentloop/... for AgentLoopKit artifacts, repo-relative paths for repo files, and filenames for older outside absolute paths. Use --redact-paths with status, check-gates, ship, or prepare-pr before pasting output into a public issue, PR, or CI log. That mode replaces the absolute Git root with [git-root]. agentloop review-context --json gives non-MCP agents one read-only local snapshot with status, gates, policies, artifacts, recent runs, latest ship evidence, and the next action.

More Docs

  • Getting started
  • CLI reference
  • Configuration
  • Task contracts
  • Verification reports
  • Status and next action
  • Gate checks
  • HTML reports
  • PR summaries and handoffs
  • Policies
  • MCP server
  • CI examples
  • Distribution channels
  • Comparison

Examples

See examples/ for sample generated harnesses and CI recipes:

  • End-to-end workflow
  • Next.js app
  • Node API
  • Python service
  • Docs-only repo
  • Empty repo
  • GitHub Actions
  • GitLab CI
  • Buildkite
  • Security review
  • Dependency upgrade

See docs/stack-recipes.md for Next.js, React/Vite, Remix, SvelteKit, Node API, Django, FastAPI, Python, docs-only, empty-repo, and monorepo verification recipes.

Compared With Plain AGENTS.md

AGENTS.md gives instructions. AgentLoopKit adds process artifacts: task contracts, gates, policies, verification reports, PR summaries, and rollback notes.

The result is easier to review because the work produces evidence, not only code.

Compared With Prompt Collections

Prompt collections help an agent respond better. AgentLoopKit gives the repository a standing workflow that compatible agents can read and follow.

Compared With Superpowers

Superpowers is a broader agent methodology and skills system. AgentLoopKit focuses on repo-level engineering loops, task contracts, verification evidence, and handoff artifacts.

They can be complementary. You can use AgentLoopKit alongside Superpowers. AgentLoopKit has no affiliation with Superpowers.

Contributing

Contributor setup:

git clone https://github.com/abhiyoheswaran1/agentloopkit
cd agentloopkit
pnpm install
pnpm test
pnpm build

See CONTRIBUTING.md for local setup and PR expectations.

License

MIT.