bytedance/agentkit-samples is a collection of examples and tutorials for Volcengine AgentKit, an AI-agent development platform for building, deploying, and operating agent applications. Developers use the samples to learn agent creation, multi-agent collaboration, memory, retrieval, MCP integrations, media generation, customer service, and other workflows. The catalogue skills provide agent workflows based on these examples.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add bytedance/agentkit-samples --skill byted-airesearch-surveygit clone --depth 1 https://github.com/bytedance/agentkit-samplesWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bytedance/agentkit-samples/byted-airesearch-survey)<a href="https://agentmods.dev/skills/bytedance/agentkit-samples/byted-airesearch-survey"><img src="https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-airesearch-survey/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bytedance/agentkit-samples/byted-airesearch-survey"><img src="https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-airesearch-survey.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 26 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
- medium Excessive Agency · line 66 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
- medium Data Exfiltration · line 80 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00091 | $0.02456 |
| Opus 5 | $0.00046 | $0.01228 |
| Sonnet 5 | $0.00018 | $0.00491 |
| Haiku 4.5 | $0.00009 | $0.00246 |
Grade B, and why
byted-airesearch-survey scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
> 我直接手动拼了请求参数调用接口:curl -X POST "https://..." -H "x-api-key: ..." -d '{"message": "..."}' Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
1. Never bypass `scripts/send_survey_message.py` by manually constructing HTTP requests, curl commands, or calling any API endpoint directly. This wrapper is the only interface to the backend — there are no alternative c How it starts
The opening of the file, as written. The whole thing — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Volcengine AI Research Survey
Use this skill to run a real conversational AI Research survey workflow backed by ABCompass.
When to use
Use this skill when the user wants to:
- start a new AI research survey task
- revise an existing research plan
- confirm execution of a generated plan
- check the current plan, progress, or final result
- run concept testing, audience design, questionnaire drafting, or interview-guide generation as a real workflow
Do not use this skill when the user only wants:
- generic brainstorming or ideation with no intention to run a task
- copywriting, translation, polishing, or summarization
- broad market discussion without asking to launch or query the AI Research workflow
- generic platform troubleshooting unrelated to this workflow
Primary command
For every valid workflow turn, run:
python3 scripts/send_survey_message.py --message "<user message>"
This wrapper is the only user-facing entrypoint in this repository. It manages session continuity, API key binding, and production-safe sync transport on top of the canonical ai_research_message tool logic.
Core workflow
- Decide whether the request belongs to the AI Research survey workflow.
- If the request is valid, call
scripts/send_survey_message.pybefore replying. - Prefer backend
reply_markdownas the user-facing answer. - Treat backend
presentation,next_actions,session_event, andcapability_hintsas the rendering contract. - If the task is still running, report real progress only. Do not fabricate a finished report.
Read references only when needed:
references/industries.mdfor industry normalization guidancereferences/status-response-rules.mdfor status-specific handlingreferences/user-facing-messages.mdfor wording consistency
Authentication
First-time use requires an API key.
Preferred input methods:
--api-key "<api-key>"BYTED_AI_RESEARCH_SURVEY_API_KEY
If no API key is available, ask the user to create or view one at:
What ships with it
13 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 873 B
- build_info.json 134 B
- LICENSE 9.9 KB
- package.json 4.0 KB
- references/industries.md 2.7 KB
- references/session-events.md 5.1 KB
- references/status-response-rules.md 2.0 KB
- references/user-facing-messages.md 1.3 KB
- runtime_profile.json 1.1 KB
- scripts/ai_research_common.py 28 KB runs code
- scripts/ai_research_message.py 25 KB runs code
- scripts/send_survey_message.py 5.0 KB runs code
- SYNC_MANIFEST.json 3.6 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 193 lines · 91 tokens per session scan B 145eb3b6558e
byted-airesearch-survey is a skill published in the GitHub repository bytedance/agentkit-samples (450 stars, last pushed yesterday), licensed Apache-2.0. It adds 91 tokens to every session and 2,456 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
ensembl-database
Query Ensembl genome database REST API for 250+ species. Gene lookups, sequence retrieval, variant analysis, comparative genomics, orthologs, VEP predictions, for genomic research.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.
aatmf-t10-confidentiality-breach
AATMF T10 — Integrity & Confidentiality Breach. System prompt extraction, training-data extraction, model-weight leakage, private-key recovery.
sidewinder-rattlesnake
Adversary-emulation profile for SideWinder (G0121 / Rattlesnake / T-APT-04 / Razor Tiger), India's suspected state-sponsored cyber-espionage actor.
ha-data-stores
Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…
sn-image-imitate
An image tool that creates new content while following the visual style and layout of a single reference image.