Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

agentic-commerce-news

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.

What it does

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:

  1. Launches 10+ parallel WebSearch queries across different angles, scoped to the past 7 days
  2. Filters results to items with credible VC / institutional / platform endorsement
  3. Classifies each item into the 9-layer Agentic Commerce Stack (Brand Discovery → Payments → Consumer Agent → Full-Stack Platform)
  4. Generates cards grouped by event type (funding / product launch / founder quote / partnership / report)
  5. Appends a summary table and weekly trend takeaways

When it triggers

  • 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

Scheduling

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

Example: Daily 8am digest in Claude Code

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).

Example: OpenClaw persistent schedule

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>"

Quality Gates

  • 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

Output Format

## 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. ...

Installation

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.

Option A: Clone from GitHub (Claude Code)

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.

Option B: Install from ClawHub

clawhub install agentic-commerce-news

Option C: Manual copy (Claude Code)

# 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 -5

Restart your Claude Code session to pick it up.

Dependencies

  • Claude Code ≥ 1.0 (requires the WebSearch tool)
  • (Optional) CronCreate tool or openclaw cron — for scheduled execution
  • No API keys or external services required

Privacy & Data Sources

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: WebSearch and WebFetch (read-only). Optionally CronCreate (Claude Code) or openclaw cron only if you explicitly ask it to run on a schedule.
  • Please respect the terms of service of any source consulted.

Customization

To adjust the search strategy:

  1. Edit the Phase 1 section of SKILL.md to add or replace WebSearch query templates
  2. Edit the Phase 3 classification table to introduce new vertical segments
  3. 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 Window section's "past 7 days" phrasing
  • Adjust the this week / today keywords in the search queries

License

MIT-0 (MIT No Attribution) — free to use, modify, and redistribute. No attribution required. See LICENSE.

About

Weekly agentic-commerce news briefing skill for Claude Code — scans the past 7 days of X/Twitter, media, and VC announcements for VC-endorsed startups, products, and funding rounds.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors