agentsclimarketplace

Omega3 review

Skill mohamed-essam/omega3-template/skills/omega3-review

Review the pending cross-system insight proposals the nightly distill placed in omega3's inbox/proposals/. Walk each one, then approve (move to insights/), edit-and-approve, or reject (logged so it's never re-proposed). Use when the user invokes /omega3-review or asks to review omega3 proposals.From its SKILL.md

Install
npx -y skills add mohamed-essam/omega3-template --skill omega3-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.7 KB, 405 tokens by cl100k_base, as published. Nobody here has run it

omega3-review

Drain inbox/proposals/ — the review gate for the distill's generative insights. OMEGA3=__OMEGA3_HOME__.

1. List proposals

cd __OMEGA3_HOME__
find inbox/proposals -maxdepth 1 -name '*.md' ! -name 'README.md'

If none, tell the user "no pending proposals" and stop.

2. For each proposal

Show the user its title, the connection, evidence (the [[links]]), confidence, and provenance. Ask for a decision: approve / edit / reject.

  • approve → move it into insights/:
    • git mv inbox/proposals/<slug>.md insights/<slug>.md
    • set status: living, refresh updated:, and remove proposal-only cruft if any.
    • add a one-line entry to insights/INDEX.md under its marker.
  • edit → refine the content with the user, then approve as above.
  • reject → capture why, append to .omega/rejected.md:
    ## <slug>
    - rejected: <YYYY-MM-DD>
    - reason: <the user's reason>
    - fingerprint: <the core claim, so near-duplicates are also suppressed>
    
    then delete the proposal: git rm inbox/proposals/<slug>.md. (The distill reads .omega/rejected.md and will never re-propose it.)

Process interactively; don't rubber-stamp. It's fine to leave some pending for later.

3. Commit + push

git add -A
git commit -m "review <YYYY-MM-DD>: <A approved, R rejected>"
git push

Summarize what was approved/rejected and how many remain pending.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,645. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.