From a35677da778f34cbac9e3db070fae86fe4d83591 Mon Sep 17 00:00:00 2001 From: Julius Smith <2200853+josmithiii@users.noreply.github.com> Date: Mon, 18 May 2026 11:02:53 -0700 Subject: [PATCH] docs(agents): address Greptile review (stale Commands comment, duplicate Structure entry) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Commands block's inline comment on `npx skills add` still said "symlink this repo into every detected harness's skill dir" — the exact misconception the PR set out to correct. Rewrite to describe the frozen-copy behavior and point at the Rules section for the full explanation. - Structure section had SKILL.md listed twice (the original line 6 entry plus a new line 13 entry added in this PR). Fold the SKILL-original.md context into line 6 and drop the duplicate. --- AGENTS.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 7e05d9b..463036a 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -3,14 +3,13 @@ Agent Skills package for researching any topic across Reddit, X, YouTube, and web. Installable across Claude Code (most common host), Codex, Cursor, GitHub Copilot, Gemini CLI, and 50+ other [Agent Skills](https://agentskills.io) hosts. Python scripts with multi-source search aggregation. ## Structure -- `skills/last30days/SKILL.md` — canonical skill definition +- `skills/last30days/SKILL.md` — canonical skill definition / runtime spec the model reads when the slash command fires (`SKILL-original.md` at repo root is the historical v1 spec, kept for reference only) - `skills/last30days/scripts/last30days.py` — main research engine - `skills/last30days/scripts/lib/` — search, enrichment, rendering modules - `skills/last30days/scripts/lib/vendor/bird-search/` — vendored X search client - `docs/solutions/` — documented solutions to past problems (bugs, best practices, workflow patterns), organized by category with YAML frontmatter (`module`, `tags`, `problem_type`) - `CONCEPTS.md` — shared domain vocabulary (Skill, Engine, Harness, Beta channel) — relevant when orienting to the codebase or discussing project terminology - `CONFIGURATION.md` — user-facing knobs (env vars, flags, per-host install patterns); keep in sync per the rules below -- `SKILL.md` (under `skills/last30days/`) — canonical runtime spec the model reads when the slash command fires; `SKILL-original.md` at repo root is the historical v1 spec, kept for reference only - `CHANGELOG.md` / `release-notes.md` — release history and human-readable notes (CHANGELOG = structured, release-notes = launch copy) - `HERMES_SETUP.md` — install instructions for the Hermes harness specifically @@ -24,7 +23,7 @@ Agent Skills package for researching any topic across Reddit, X, YouTube, and we ```bash # Dev/fallback: direct engine invocation (scripting, cron, or engine testing only) python3 skills/last30days/scripts/last30days.py "test query" --emit=compact -npx skills add . -g -y # one-time: symlink this repo into every detected harness's skill dir +npx skills add . -g -y # copies skill into ~/.agents/skills// (frozen at install time); re-run to sync working-tree edits — see Rules below # Tests (pytest, ~89 files under tests/, configured in pyproject.toml) uv run pytest # full suite