|
1 | 1 | --- |
2 | | -name: aw-report |
3 | | -description: > |
4 | | - Generate today's GitHub Agentic Workflows intelligence report. Searches the web |
5 | | - for the latest news, features, breaking changes, and community activity across |
6 | | - the gh-aw ecosystem, then produces and saves a structured Markdown report and |
7 | | - posts it to GitHub Discussions for historical record. |
8 | | - Use with: /aw-report [--deep] [--no-post] [--domains domain1,domain2] |
9 | | -tools: |
10 | | - - WebSearch |
11 | | - - WebFetch |
12 | | - - Write |
13 | | - - Bash |
14 | | - - Read |
| 2 | +description: Run a full gh-aw ecosystem intelligence sweep and produce a dated report |
| 3 | +argument-hint: "[--deep] [--no-post] [--domains domain1,domain2]" |
15 | 4 | --- |
16 | 5 |
|
17 | | -Run the `gh-aw-report` skill to produce today's GitHub Agentic Workflows intelligence report. |
| 6 | +# /aw-report |
18 | 7 |
|
19 | | -## Flags |
| 8 | +Runs a full intelligence sweep across the GitHub Agentic Workflows ecosystem — 8+ web searches — and produces a dated Markdown report saved to `outputs/gh-aw-reports/YYYY-MM-DD.md`. Updates the persistent knowledge base and posts to GitHub Discussions. |
| 9 | + |
| 10 | +## Usage |
20 | 11 |
|
21 | | -Parse the argument string for these optional flags: |
| 12 | +``` |
| 13 | +/aw-report → Full sweep, all domains, post to Discussions |
| 14 | +/aw-report --deep → Extended sweep with deep-dive queries |
| 15 | +/aw-report --no-post → Generate report without posting to Discussions |
| 16 | +/aw-report --domains gh-aw,mcp → Only sweep specified domains |
| 17 | +``` |
| 18 | + |
| 19 | +## Flags |
22 | 20 |
|
23 | 21 | - `--deep` — Run additional deep-dive queries from the extended query library beyond the 8 primary searches |
24 | 22 | - `--no-post` — Skip posting to GitHub Discussions (still saves report locally and updates knowledge base) |
25 | | -- `--domains` — Comma-separated list of domains to sweep. Valid: `gh-aw`, `actions`, `workspace`, `agent-mode`, `models`, `mcp-server`, `claude-code`, `community` |
| 23 | +- `--domains` — Comma-separated list of domains to sweep. Valid domains: `gh-aw`, `actions`, `workspace`, `agent-mode`, `models`, `mcp-server`, `claude-code`, `community` |
| 24 | + |
| 25 | +## Workflow |
| 26 | + |
| 27 | +You are an intelligence analyst for the gh-aw ecosystem. Load the **gh-aw-report** skill to execute the full intelligence cycle: |
| 28 | + |
| 29 | +1. Load context from the knowledge base and architecture reference |
| 30 | +2. Execute the primary sweep (8 targeted web searches) |
| 31 | +3. If `--deep` is passed, run additional deep-dive queries |
| 32 | +4. If `--domains` is passed, filter to only the specified domains |
| 33 | +5. Synthesize findings into a structured report |
| 34 | +6. Save the report to `outputs/gh-aw-reports/YYYY-MM-DD.md` |
| 35 | +7. Update the knowledge base with stable facts |
| 36 | +8. Unless `--no-post`, post the report to GitHub Discussions in the `project-news` category at `zircote/github-agentic-workflows` |
| 37 | +9. Print the final summary |
| 38 | + |
| 39 | +## Examples |
| 40 | + |
| 41 | +``` |
| 42 | +/aw-report |
| 43 | +# → Full sweep, saves report, updates KB, posts to Discussions |
26 | 44 |
|
27 | | -## Steps |
| 45 | +/aw-report --deep |
| 46 | +# → Extended sweep with deep-dive queries on rich domains |
28 | 47 |
|
29 | | -1. Load the gh-aw-report skill by reading `skills/gh-aw-report/SKILL.md`. |
30 | | -2. Follow the skill's instructions exactly — perform all 8 required web searches (or filtered if `--domains` specified), synthesize findings, and produce the full structured report. |
31 | | -3. If `--deep` is passed, run additional deep-dive queries from `skills/gh-aw-report/references/search-queries.md`. |
32 | | -4. Save the report to `outputs/gh-aw-reports/YYYY-MM-DD.md` (today's date). |
33 | | -5. Update the knowledge base at `skills/gh-aw-report/knowledge-base.md`. |
34 | | -6. Unless `--no-post`, post the report to GitHub Discussions in the `Project News` category at `zircote/github-agentic-workflows` using the GraphQL API (see skill Phase 6). |
35 | | -7. Present the saved report link, discussion URL, and a 3-sentence summary of the most important findings. |
| 48 | +/aw-report --no-post --domains gh-aw,mcp-server |
| 49 | +# → Only sweep gh-aw core and MCP server, skip Discussions post |
36 | 50 |
|
37 | | -Do not produce placeholder content. Every section must reflect real search results from today's run. |
| 51 | +/aw-report --deep --domains claude-code |
| 52 | +# → Deep dive on Claude Code × GitHub integrations only |
| 53 | +``` |
0 commit comments