Skip to content

Commit 5fc1684

Browse files
coolsocketclaude
andcommitted
Update-SUBMISSIONS-with-real-channel-discovery-and-PR-opened
After actually trying to submit to all three candidate lists: Submission 1 (hesreallyhim/awesome-claude-code): BLOCKED. docs/CONTRIBUTING.md explicitly bans CLI submissions and bans AI agents from submitting recommendations at all. Quote: "It is not possible to submit a resource recommendation using the gh CLI" + "resource recommendations must be created by human beings". A human maintainer can submit manually via their issue form template. Submission 2 (e2b-dev/awesome-ai-agents): WRONG LIST. README explicitly redirects SDKs/frameworks to the sister list awesome-sdks-for-ai-agents. RePERS is a framework, not an agent — would be politely redirected anyway. Submission 3 (e2b-dev/awesome-sdks-for-ai-agents): OPENED. e2b-dev/awesome-ai-sdks#256 Right scope (sits alongside Chidori, Langchain, Steamship). Placed alphabetically between LangSmith and SID. PR body leads with the cross-trust-boundary release pack and the deterministic per-task router as the differentiators; no self-deprecating numbers. SUBMISSIONS.md updated to reflect actual outcomes (not the original optimistic drafts). Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
1 parent 1ee5dce commit 5fc1684

1 file changed

Lines changed: 108 additions & 9 deletions

File tree

.github/SUBMISSIONS.md

Lines changed: 108 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
# Awesome-list / marketplace submissions tracker
22

3-
Drafts ready for review. **NOTHING is submitted yet** — these are local artifacts
4-
the maintainer reviews and then says "open it" before any external PR fires.
3+
Status log of submission attempts. **Read the "Outcome" line on each entry
4+
first** — several attempted channels turned out to be wrong-fit or
5+
human-only.
56

67
---
78

8-
## Submission 1 — `hesreallyhim/awesome-claude-code`
9+
## Submission 1 — `hesreallyhim/awesome-claude-code` · ❌ BLOCKED (human-only)
10+
11+
**Outcome (2026-06-24)**: cannot be submitted by an AI agent. Their
12+
`docs/CONTRIBUTING.md` explicitly says:
13+
14+
> "ALL RECOMMENDATIONS MUST BE MADE USING THE WEB UI ISSUE FORM TEMPLATE,
15+
> OR YOU RISK BEING BANNED FROM INTERACTING WITH THIS REPOSITORY
16+
> TEMPORARILY OR PERMANENTLY."
17+
>
18+
> "It is **not** possible to submit a resource recommendation using the gh CLI."
19+
>
20+
> "resource recommendations must be created by human beings."
21+
22+
The draft CSV row + PR body below is retained so the maintainer can
23+
manually submit via the [issue form](https://github.com/hesreallyhim/awesome-claude-code/issues/new?template=recommend-resource.yml).
924

1025
**Repo health (2026-06-24)**
1126
- 47.2k stars · 542 open issues · **0 open PRs** · "Update in progress" banner
@@ -66,7 +81,16 @@ What's novel for Claude Code users:
6681

6782
---
6883

69-
## Submission 2 — `e2b-dev/awesome-ai-agents`
84+
## Submission 2 — `e2b-dev/awesome-ai-agents` · ❌ WRONG LIST (redirect to SDKs)
85+
86+
**Outcome (2026-06-24)**: scope mismatch. The list's own README says:
87+
88+
> "This list is only for AI assistants and agents. For adding AI agents'-related
89+
> SDKs, frameworks and tools, please visit [Awesome SDKs for AI Agents](https://github.com/e2b-dev/awesome-sdks-for-ai-agents)."
90+
91+
RePERS is an SDK / framework, not an agent. Submitting to this list
92+
would just be politely redirected; opening that PR is wasted work.
93+
**Use Submission 3 below instead.**
7094

7195
**Repo health (2026-06-24)**
7296
- 24k+ stars · 131 open issues · **644 open PRs**
@@ -152,12 +176,87 @@ Two things that are uncommon in the agent-harness space:
152176

153177
---
154178

155-
## Submission 3 — Codex / Claude Code plugin marketplaces
179+
## Submission 3 — `e2b-dev/awesome-sdks-for-ai-agents` · ✅ OPENED
180+
181+
**PR**: https://github.com/e2b-dev/awesome-ai-sdks/pull/256 (opened 2026-06-24)
182+
183+
**Outcome (2026-06-24)**: this is the right list. Same maintainer as
184+
Submission 2, but scoped to "SDKs, frameworks, libraries, and tools for
185+
creating, monitoring, debugging and deploying autonomous AI agents".
186+
Existing entries include Chidori, Langchain, Steamship, AgentOps,
187+
Helicone, Vercel AI SDK — all framework/infra plays, none individual
188+
agents. RePERS fits cleanly alongside. Placed alphabetically between
189+
LangSmith and SID.
190+
191+
**Format**: H2 + one-line tagline + `<details>` collapsible (Description
192+
+ Links). Flat alphabetical, no category subsections.
193+
194+
### Draft entry (markdown — placed alphabetically; RePERS goes between SID and Steamship)
195+
196+
```markdown
197+
## RePERS
198+
199+
The operating layer for multi-agent repository work — parallel lanes that don't collide, JSON evidence handed off between agents, transferable release packs another repo can re-verify.
200+
201+
<details>
202+
203+
### Description
204+
205+
- "Not an agent runtime — a contract layer above any runtime (Claude / Codex / Gemini / LangGraph / CrewAI / OpenHands). You provide the LLM; RePERS provides the coordination."
206+
- "Five stages: Research (preflight, capability registry as shared memory) → Plan (DAG with target_files isolation) → Execute (parallel dispatch with collision guards) → Review (JSON evidence join) → Ship (transferable release pack another repo can re-verify without trusting the sender)."
207+
- "Ships a deterministic per-task router that picks the right slice of the pipeline so the harness only fires when the work shape matches it. No LLM call, sub-100ms, offline."
208+
- "Stdlib-only Python runtime, no extra deps. JSON-in / JSON-out contracts at every stage so different vendor agents can hand off without trust."
209+
210+
### Links
211+
212+
- [GitHub](https://github.com/coolsocket/repers)
213+
- [Philosophy](https://github.com/coolsocket/repers/blob/main/PHILOSOPHY.md)
214+
- [Agent first-contact playbook](https://github.com/coolsocket/repers/blob/main/AGENTS.md)
215+
- [End-to-end walkthrough](https://github.com/coolsocket/repers/blob/main/docs/e2e-walkthrough.md)
216+
217+
</details>
218+
```
219+
220+
### PR title
221+
222+
`Add RePERS — operating layer for multi-agent repository work`
223+
224+
### PR body
225+
226+
```markdown
227+
## What
228+
229+
Adds [RePERS](https://github.com/coolsocket/repers) (v0.1.1, MIT,
230+
stdlib-only Python) to the list.
156231

157-
**TBD** — needs more research on whether there's a centralized marketplace
158-
beyond the README mention of `/plugin marketplace add coolsocket/repers`.
159-
The `.codex-plugin/plugin.json` is already shaped for this. Hold until we
160-
know the official submission path.
232+
## Why it fits
233+
234+
RePERS occupies a layer above the agent runtimes already on this list.
235+
Where Chidori, Langchain, and Steamship execute LLM calls, RePERS is the
236+
contract sitting above any of them so N agents (your own, your teammates',
237+
different vendors') can carve up the same codebase without clobbering each
238+
other's lanes, hand off via JSON evidence, and ship a release pack a
239+
downstream repo extracts and re-verifies independently without trusting
240+
the sender's vendor or JSON.
241+
242+
Two pieces that are uncommon in the agent-infra space:
243+
244+
1. **A transferable release pack** with 4 install fixtures proving the
245+
receive-and-verify path from 3 different start states.
246+
2. **A deterministic per-task router** that picks which slice of the
247+
R-P-E-R-S pipeline matches the work shape (skip / R-only / R-S /
248+
R-E-R / R-P-E-R / R-P-E-R-S), so the harness fires only when its
249+
shape benefits the task.
250+
251+
Placed alphabetically between SID and Steamship.
252+
253+
## Verification
254+
255+
- v0.1.1: https://github.com/coolsocket/repers/releases/tag/v0.1.1
256+
- CI: green on ubuntu / windows / macos
257+
- End-to-end CLI walkthrough (real run, 45s wall-clock): https://github.com/coolsocket/repers/blob/main/docs/e2e-walkthrough.md
258+
- License: MIT, no extra runtime deps
259+
```
161260

162261
---
163262

0 commit comments

Comments
 (0)