Skip to content

Commit cbd4758

Browse files
Pin Registry Broker at top of Development & Workflow section
Update linter to support <!-- pinned --> comment for entries that should always appear first, excluded from alphabetical checking.
1 parent d450a93 commit cbd4758

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,14 @@ Third-party plugins built by the community. [PRs welcome](#contributing)!
5555

5656
### Development & Workflow
5757

58+
<!-- pinned -->
59+
- [Registry Broker](https://github.com/hashgraph-online/registry-broker-codex-plugin) - Delegate tasks to specialist AI agents via the HOL Registry, plan, find, summon, and recover sessions.
5860
- [AgentOps](https://github.com/boshu2/agentops) - DevOps layer for coding agents with flow, feedback, and memory that compounds between sessions.
5961
- [Claude Octopus](https://github.com/nyldn/claude-octopus) - Multi-LLM orchestration dispatching to 8 providers (Codex, Gemini, Copilot, Qwen, Perplexity, OpenRouter, Ollama, OpenCode) with Double Diamond workflows, adversarial review, and safety gates.
6062
- [Codex Multi Auth](https://github.com/ndycode/codex-multi-auth) - Multi-account OAuth manager for the official Codex CLI with switching, health checks, and recovery tools.
6163
- [Codex Reviewer](https://github.com/schuettc/codex-reviewer) - Second-pass review of Claude-driven plans and implementations.
6264
- [HOTL Plugin](https://github.com/yimwoo/hotl-plugin) - Human-on-the-Loop AI coding workflow plugin for Codex, Claude Code, and Cline with structured planning, review, and verification guardrails.
6365
- [Project Autopilot](https://github.com/AlexMi64/codex-project-autopilot) - Turn an idea into a structured project workflow with planning, execution, verification, and handoff.
64-
- [Registry Broker](https://github.com/hashgraph-online/registry-broker-codex-plugin) - Delegate tasks to specialist AI agents via the HOL Registry, plan, find, summon, and recover sessions.
6566

6667
### Tools & Integrations
6768

scripts/check-alphabetical.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/usr/bin/env python3
2-
"""Linter: verify that list entries within each section of README.md are alphabetically sorted."""
2+
"""Linter: verify that list entries within each section of README.md are alphabetically sorted.
3+
4+
Supports pinned entries: any list item preceded by `<!-- pinned -->` is treated as
5+
always-first and excluded from alphabetical checking. The remaining items must be sorted.
6+
"""
37

48
import re
59
import sys
@@ -41,6 +45,9 @@ def extract_sections(filepath: str) -> list[tuple[str, str, list[str]]]:
4145
current_items = []
4246
elif item_re.match(line):
4347
display_text = item_re.match(line).group(1)
48+
# Skip pinned entries
49+
if i > 1 and re.search(r"<!--\s*pinned\s*-->", lines[i - 2]):
50+
continue
4451
current_items.append((display_text.lower(), i))
4552

4653
# Don't forget the last section

0 commit comments

Comments
 (0)