agent-supply-chain-newsletter
- Repo stars 3,626
- Author updated Live
- Author repo datadog-agent
- Domain
- AI
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @DataDog · no license declared
- Token usage
- Lean
- Setup complexity
- Plug-and-play
- External API key
- Not required
- Operating systems
- Unspecified (assume cross-platform)
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Network behavior
- External requests
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: agent-supply-chain-newsletter
description: Generate the Agent Supply Chain newsletter by researching team activity on GitHub and Confluence…
category: ai
runtime: no special runtime
---
# agent-supply-chain-newsletter output preview
## PART A: Task fit
- Use case: Generate the Agent Supply Chain newsletter by researching team activity on GitHub and Confluence, then creating a Confluence draft and Gmail draft Fetch the current list of agent-supply-chain team members from GitHub: gh api orgs/DataDog/teams/agent-supply-chain/members --paginate --jq '.[].login' makes outbound network calls. Works with Claude Code, Curs….
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Step 1: Gather team members / Step 2: Read past newsletters for format reference / Step 3: Research GitHub activity” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Generate the Agent Supply Chain newsletter by researching team activity on GitHub and Confluence, then creating a Confluence draft and Gmail draft Fetch the current list of agent-supply-chain team members from GitHub: gh api orgs/DataDog/teams/agent-supply-chain/members --paginate --jq '.[].login' makes outbound network calls. Works with Claude Code, Curs…”.
- **02** When the source has headings, the agent prioritizes “Step 1: Gather team members / Step 2: Read past newsletters for format reference / Step 3: Research GitHub activity” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files; may access external network resources; usually needs no extra API key.
## Running Rules
- read files, write/modify files; may access external network resources; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files.
Start with a small task and check whether the result follows “Step 1: Gather team members / Step 2: Read past newsletters for format reference / Step 3: Research GitHub activity”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: agent-supply-chain-newsletter
description: Generate the Agent Supply Chain newsletter by researching team activity on GitHub and Confluence…
category: ai
source: DataDog/datadog-agent
---
# agent-supply-chain-newsletter
## When to use
- Generate the Agent Supply Chain newsletter by researching team activity on GitHub and Confluence, then creating a Conf…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Step 1: Gather team members / Step 2: Read past newsletters for format reference / Step 3: Research GitHub activity” and keep inference separate from source facts.
- read files, write/modify files; may access external network resources; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "agent-supply-chain-newsletter" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Step 1: Gather team members / Step 2: Read past newsletters for format reference / Step 3: Research GitHub activity
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files | may access external network resources
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Generate the Agent Supply Chain newsletter for the period $ARGUMENTS by researching what team members accomplished on GitHub and Confluence, then producing both a Confluence blog post draft and a Gmail draft.
Step 1: Gather team members
Fetch the current list of agent-supply-chain team members from GitHub:
gh api orgs/DataDog/teams/agent-supply-chain/members --paginate --jq '.[].login'
Ask the user if any members should be excluded (e.g. people who moved teams).
Step 2: Read past newsletters for format reference
- Search for the latest blog posts in the ASC1 Confluence space:
mcp__claude_ai_Atlassian__searchConfluenceUsingCqlwithcql:type = "blogpost" AND space = "ASC1" ORDER BY created DESC(limit 3)
- Read the most recent newsletter with
mcp__claude_ai_Atlassian__getConfluencePage(contentFormat:markdown, contentType:blog) to match its structure and tone.
The newsletter format is:
- Header: greeting, team links (ASC1, ABLD, BARX, ADX spaces), OKR link, support channel link
- "What's new?" section organized by sub-team (Agent Developer Experience, Agent Build, Agent Delivery)
- Each item has: a short title, quantified impact (time saved, percentage improvement, count), and links to PRs or docs
- "Did you know?" section with one fun/useful tip
- Footer: link to all newsletters, support channel reminder
Step 3: Research GitHub activity
For each team member, launch background agents (use run_in_background: true) to search merged PRs during the period. Split into batches of ~8 members per agent to parallelize.
Each agent should run, for every user:
# PRs in datadog-agent
gh pr list --repo DataDog/datadog-agent --author USERNAME --state merged --search "merged:START_DATE..END_DATE" --limit 50 --json title,url,mergedAt,labels
# PRs across the DataDog org (catches buildimages, k8s-ops, integrations-core, etc.)
gh search prs --author USERNAME --owner DataDog --merged --limit 20 --json repository,title,url -- "merged:START_DATE..END_DATE"
Each agent should return a summary per user, grouped thematically (build improvements, CI/CD, new features, bug fixes, etc.). Skip trivial PRs (version bumps, dependency updates). Focus on items that impact teams outside Agent Supply Chain.
Step 4: Research Confluence activity
Launch a background agent to search for relevant documentation created during the period:
mcp__claude_ai_Atlassian__searchConfluenceUsingCql
With CQL queries:
space = "ASC1" AND lastModified >= "START_DATE" AND lastModified <= "END_DATE" ORDER BY lastModified DESC(limit 25)space = "ADX" AND lastModified >= "START_DATE" AND lastModified <= "END_DATE" ORDER BY lastModified DESC(limit 25)
Identify RFCs, design docs, operational reports, and guides that are newsletter-worthy.
Step 5: Synthesize and write the newsletter
Apply the newsletter guide's filter: "Is this information impacting a team outside of the Agent Supply Chain group?" Only include items where the answer is yes.
For each item:
- Provide a quantifiable improvement (time saved, percentage change, cost reduction) when available
- Link to the relevant PR, Confluence page, or documentation
- Keep descriptions concise (2-4 sentences max per item)
Group items under:
- Agent Developer Experience (CI speed, developer tools, workflows, open source)
- Agent Build (Bazel migration, build system, platform support)
- Agent Delivery (releases, deployments, registries, security)
End with a "Did you know?" section highlighting one interesting tool, feature, or tip.
Step 6: Create outputs
6a. Confluence blog post draft
Use mcp__claude_ai_Atlassian__createConfluencePage with:
cloudId:datadoghq.atlassian.netspaceId:4662624793(ASC1 space)title:<Period> - Agent Supply Chain Monthly UpdatecontentType:blogstatus:draftcontentFormat:markdown
6b. Gmail draft
Use mcp__claude_ai_Gmail__gmail_create_draft with:
to:agent-community@datadoghq.comsubject:<Period> - Agent Supply Chain Monthly UpdatecontentType:text/html- Rich HTML body matching the Confluence content
Step 7: Present results
Return to the user:
- Links to both the Confluence draft and Gmail draft
- A bullet-point summary of the sections covered
- Remind them to:
- Review both outputs for accuracy
- Send the Gmail to themselves first to verify formatting
- Schedule the final send between 2-4pm CET, not on a Friday
- Ask for review in
#agent-devx-private/ from Damien Desmarets before publishing
Decide Fit First
Design Intent
How To Use It
Boundaries And Review