Agentic Commerce Weekly Briefing — scans the past 7 days of X/Twitter, industry media, and VC announcements for startups, products, funding rounds, and opinions endorsed by influential voices (VCs, founders, AI leaders) in the agentic commerce space, then produces a structured news briefing.
Every week's output is published in briefings/ — read one before installing; the archive is the demo.
A news aggregation skill focused on agentic commerce — the rapidly evolving space where AI agents shop, compare, check out, and pay on behalf of humans. On every invocation, it:
- Launches 10+ parallel WebSearch queries across different angles, scoped to the past 7 days
- Filters results to items with credible VC / institutional / platform endorsement
- Classifies each item into the 9-layer Agentic Commerce Stack (Brand Discovery → Payments → Consumer Agent → Full-Stack Platform)
- Generates cards grouped by event type (funding / product launch / founder quote / partnership / report)
- Appends a summary table and weekly trend takeaways
- User types
/agentic-commerce-news - User mentions keywords like "agentic commerce news", "AI commerce updates", "agent shopping this week"
- User asks things like "what's new in agentic commerce this week?" or "who's funding AI shopping startups?"
- User asks to set up a scheduled/recurring digest on agentic commerce
Three ways to run this on a schedule, depending on your environment:
| Environment | Command | Notes |
|---|---|---|
| Claude Code (session) | CronCreate tool |
In-session only, not persisted across restarts |
| Claude Code (persistent) | /schedule skill |
Runs on claude.ai infrastructure, survives restarts |
| OpenClaw | openclaw cron add |
24/7 background execution |
Say to Claude:
"Set up a daily task to run agentic-commerce-news at 8am."
Claude will use CronCreate with "3 8 * * *" (8:03am — nudged a few minutes off the round hour to avoid API pile-ups).
openclaw cron add \
--name "Agentic Commerce Daily" \
--cron "3 8 * * *" \
--tz "America/New_York" \
--message "Run the agentic-commerce-news skill to surface the past week's agentic commerce activity" \
--channel <your-channel> \
--to "<your-id>"- Only items from the past 7 days qualify
- Every item must have credible endorsement (VC investment, public recommendation by a recognized figure, inclusion in a major report, or official platform partnership)
- Every item must include a source link
- Minimum 5 items (a quiet week is OK — do not pad with stale news)
- Exclude pure PR / sponsored content
- Publish dates of top items are confirmed on the source page, not inferred from search snippets
- Items covered in the previous briefing (see
briefings/) don't repeat unless there's a material new development
## Agentic Commerce Weekly Briefing (Apr 8 – Apr 15)
> 8 noteworthy signals from the past week
### Funding
### ProductName (raised $XM) — one-line summary
**Date:** Apr 12
**Endorsement:** who invested
**Key points:**
- point 1
- point 2
**Layer:** Payment Infrastructure
Source: https://...
### Product Launches
...
### Founder / VC Opinions
...
## At a Glance
| Date | Company / Person | Event Type | One-line Summary | Layer |
|------|------------------|-----------|-------------------|-------|
| ... | ... | ... | ... | ... |
## Weekly Takeaways
1. ...
2. ...
This repository is packaged as an Agent Plugins 1.0.0 plugin (plugin.json + skills/ layout), so any compatible client — Codex, ChatGPT, Cursor, GitHub Copilot, Kiro, VS Code, Claude Code — can discover and load the skill through its own plugin install flow.
git clone https://github.com/xuxinmaxen/agentic-commerce-news.git /tmp/acn \
&& cp -r /tmp/acn/skills/agentic-commerce-news ~/.claude/skills/Restart your Claude Code session to pick it up.
clawhub install agentic-commerce-news# Copy the skill folder into ~/.claude/skills/
cp -r skills/agentic-commerce-news ~/.claude/skills/
# Verify frontmatter
cat ~/.claude/skills/agentic-commerce-news/SKILL.md | head -5Restart your Claude Code session to pick it up.
- Claude Code ≥ 1.0 (requires the
WebSearchtool) - (Optional)
CronCreatetool oropenclaw cron— for scheduled execution - No API keys or external services required
This skill reads only publicly available information and stores no personal data:
- Sources: public web search results, public posts on X/Twitter, public industry blogs and media, and publicly announced VC funding data.
- No personal data is collected or stored. Results are used only for in-session synthesis of the briefing — nothing is persisted to disk or sent to any third-party server beyond the standard web-search / web-fetch calls Claude already performs.
- No credentials required. The skill needs no API keys, tokens, or logins.
- Tools used:
WebSearchandWebFetch(read-only). OptionallyCronCreate(Claude Code) oropenclaw crononly if you explicitly ask it to run on a schedule. - Please respect the terms of service of any source consulted.
To adjust the search strategy:
- Edit the Phase 1 section of
SKILL.mdto add or replace WebSearch query templates - Edit the Phase 3 classification table to introduce new vertical segments
- Edit the Phase 4 card format to tweak output style
To change the time window (e.g., 3 days or 30 days instead of 7):
- Update the
## Time Windowsection's "past 7 days" phrasing - Adjust the
this week/todaykeywords in the search queries
MIT-0 (MIT No Attribution) — free to use, modify, and redistribute. No attribution required. See LICENSE.