loops
open standard for recurring agents
try it now
$ npx agenticloops install <owner/loop>

install a team, not a skill.

a loop is a recurring agent, or a whole team of them, in one file: roles handing off down a chain, running on a schedule, on any harness. watch one run ↓

runs on any harness

browse loops

All
Featured
#LoopTrigger
01
Competitive Intelligence Analyst
5dive-ai/ci-analyst
◷ Every 4h
02
Intel Brief — Analyst to Writer relay
5dive-ai/intel-brief
◷ Every 4h
03
Content Marketer / Blog Writer
5dive-ai/content-marketer
◷ Daily @ 09:00
04
Code Reviewer / Verifier
5dive-ai/code-reviewer-verifier
⚡ On task-done / PR
05
Market Research Analyst
5dive-ai/market-research-analyst
◷ Weekly (Monday)
06
Affiliate Manager
5dive-ai/affiliate-manager
◷ Weekly (Monday)
07
Social Media Manager
5dive-ai/social-media-manager
◷ On publish
08
Community Manager
5dive-ai/community-manager
◷ Hourly
09
Chief of Staff / Executive Assistant
5dive-ai/chief-of-staff
◷ Daily
10
Weekly Research & Competitive Analyst
githubnext/agentics
◷ Weekly (Monday)
11
CI Failure Doctor
githubnext/agentics
⚡ On CI failure
12
Daily Malicious Code Scanner
githubnext/agentics
◷ Daily
13
Daily Accessibility Reviewer
githubnext/agentics
◷ Daily
14
Agent Performance Analyzer
github/gh-aw
◷ Daily
15
Autonomous DevOps Supervisor
marcusquinn/aidevops
◷ Every 2 minutes
16
Multi-Agent Task Coordinator
desplega-ai/agent-swarm
⚡ On inbound task
17
AI Security Operations Center
beenuar/AiSOC
◷ Nightly
18
Agentic Workflow Security Scanner
splx-ai/agentic-radar
◷ Weekly (Monday)
19
Daily Personal News Radar
Thysrael/Horizon
◷ Daily
20
Daily Stock Market Analyst
ZhuLinsen/daily_stock_analysis
◷ Weekdays (post-close)
21
Daily AI News Digest Writer
geekjourneyx/ai-daily-skill
◷ Daily
22
Multi-Agent AI Research Brief
hoangsonww/AI-News-Briefing
◷ Daily
23
Personal Briefing Assistant
henrydaum/second-brain
◷ Daily (configurable)
24
Autonomous PR Loop Agent
AnandChowdhary/continuous-claude
◷ Weekdays
25
Issue Triage Bot
githubnext/agentics
⚡ On new issue
26
Release Notes Writer
lodar/release-notes-writer
⚡ On new tag
27
Daily Weather Brief
5dive-ai/example-weather-loop
◷ Daily @ 07:00

One file defines a loop

A LOOP.md is the whole loop. The frontmatter is the manifest, the body is the prompt. Harness-agnostic, and field-compatible with the conventions already in the wild. Add the agenticloops GitHub topic and the crawler indexes it automatically.

Read the spec (LOOP.md v0.1) → Find, install, or author a loop with the loops skill →
---
name: intel-brief
description: analyst gathers what changed,
  writer ships the brief
schedule: daily             # harness picks the slot
requires:
  secrets: [X_API_TOKEN]   # names, never values
tier: frontier             # frontier|standard|fast
effort: high               # high|medium|low
concurrency: skip          # skip|queue|replace|allow
agents:                    # ordered chain · one run
  - role: analyst
    skills: [5dive-ai/skills/deep-research]
    prompt: |
      Scan our competitor set for the last
      interval. Return what changed, with sources.
  - role: writer
    prompt: |
      Turn {{previous_output}} into a one-paragraph
      sourced brief. Post it to the team.
tags: [research, multi-agent]
license: MIT
---

one file. a whole team. not our harness.

this is intel-brief, a two-role loop (analyst hands off to writer), installed with one command and running on a generic harness. the run is the receipt.