Best for
- start a new AI research survey task
- revise an existing research plan
- confirm execution of a generated plan
bytedance/agentkit-samples/skills/byted-airesearch-survey/SKILL.md
Launch and continue the Volcengine AI Research survey workflow for concept testing, audience design, questionnaire drafting, interview guide generation, execution confirmation, progress checks, and result queries. Use this skill when the user wants to create, revise, confirm, execute, or follow up on a real AI research survey task in ABCompass instead of doing generic brainstorming, copywriting, translation, summarization, or broad market discussion.
Decision brief
Use this skill to run a real conversational AI Research survey workflow backed by ABCompass.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/bytedance/agentkit-samples --skill "skills/byted-airesearch-survey"Inspect the Agent Skill "byted-airesearch-survey" from https://github.com/bytedance/agentkit-samples/blob/0890278a6571e4190c1ab8cacd9becc147f74d9c/skills/byted-airesearch-survey/SKILL.md at commit 0890278a6571e4190c1ab8cacd9becc147f74d9c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Decide whether the request belongs to the AI Research survey workflow. 2. If the request is valid, call scripts/sendsurveymessage.py before replying. 3. Prefer backend replymarkdown as the user-facing answer. 4. Treat backend presentation, nextactions, sessionevent, and capab…
Use this skill when the user wants to:
For every valid workflow turn, run:
First-time use requires an API key.
Review the “Parameter guidance” section in the pinned source before continuing.
Permission review
The documentation asks the agent to run terminal commands or scripts.
python3 scripts/send_survey_message.py --message "<user message>"The documentation includes sending, uploading, or posting data to a remote service.
我直接手动拼了请求参数调用接口:curl -X POST "https://..." -H "x-api-key: ..." -d '{"message": "..."}'The documentation includes network, browsing, or remote request actions.
我直接手动拼了请求参数调用接口:curl -X POST "https://..." -H "x-api-key: ..." -d '{"message": "..."}'The documentation asks the agent to run terminal commands or scripts.
python3 scripts/send_survey_message.py \Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 433 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Use this skill to run a real conversational AI Research survey workflow backed by ABCompass.
Use this skill when the user wants to:
Do not use this skill when the user only wants:
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.
scripts/send_survey_message.py before replying.reply_markdown as the user-facing answer.presentation, next_actions, session_event, and capability_hints as the rendering contract.Read references only when needed:
references/industries.md for industry normalization guidancereferences/status-response-rules.md for status-specific handlingreferences/user-facing-messages.md for wording consistencyFirst-time use requires an API key.
Preferred input methods:
--api-key "<api-key>"BYTED_AI_RESEARCH_SURVEY_API_KEYIf no API key is available, ask the user to create or view one at:
https://console.volcengine.com/datatester/ai-research/audience/list?tab=apikeyThen ask the user to provide the API key before calling the API. If the wrapper returns AUTH_REQUIRED, do not ask the user to repeat the research request. The pending request can continue directly after key binding.
| Category | Parameters | When to set |
|---|---|---|
| Always pass | --message | Every call |
| Pass when user provides | --api-key, --session-id, --force-new-session, --research-method, --language | User explicitly specifies these values. Note: --api-key is not persisted by the wrapper — the host must retain it in conversation context and pass it on every subsequent call, or guide the user to set the BYTED_AI_RESEARCH_SURVEY_API_KEY environment variable. |
| Pass when host can confidently resolve | --request-kind, --industry-hint, --normalized-message | Host has enough context to classify intent or normalize industry. Read references/industries.md for mapping rules. |
Use from next_actions | All parameters in tool_input | When the previous response included next_actions, use the pre-built parameters directly. Do not modify or guess. |
| Leave to defaults | --source-channel, --response-mode, --app-id, --status-only | Only set when you have a specific reason |
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 call paths, sub-agents, or other scripts to try.reply_markdown verbatim as the user-facing answer. Do not compress, rephrase, summarize, or replace it. If reply_markdown is empty, use the fallback message from the response — do not invent content.next_actions, use them as the exclusive set of suggested next steps. Each action includes a pre-built tool_input with all necessary parameters. Do not invent actions outside this set.presentation, session_event, and capability_hints as the rendering contract. Do not invent a parallel workflow.capability_hints.followup_supported is true.These are real failure patterns observed in host integrations. Each one violates a critical rule above.
Bad — the host manually constructed an HTTP request instead of calling the wrapper:
我直接手动拼了请求参数调用接口:curl -X POST "https://..." -H "x-api-key: ..." -d '{"message": "..."}'
Why forbidden: Bypassing the wrapper leaks headers, credentials, and internal URLs. The wrapper handles credential redaction, error recovery, and session management.
Bad — the host told the user about internal environments:
先后尝试了测试环境和正式环境的接口都访问失败(测试环境域名解析失败,正式环境接口返回404)
Why forbidden: Internal infrastructure topology is not a user concept. If the wrapper fails, return its error response directly.
Bad — the host showed unredacted API key and internal headers:
-H "x-api-key: 3089e65f8d577071a7c9f7a1ae041716b351ac2a" -H "x-tt-env: ppe_datarangers"
Why forbidden: API keys must never appear unredacted. Internal request headers are implementation details. Only the wrapper's built-in redaction mechanism may expose request details.
Bad — the host fabricated a non-existent calling method:
工具:sessions_spawn / 参数:agentId: "byted-airesearch-survey" / 返回错误:{"status": "forbidden"}
Why forbidden: sessions_spawn and agentId do not exist. The only interface is scripts/send_survey_message.py.
Bad — the host tried alternative paths after the standard call failed:
由于子agent方式被禁止,我就换了手动构造curl的方式直接调用接口
Why forbidden: When the wrapper fails, return its error response. Do not diagnose, retry via alternative paths, or construct manual HTTP requests.
Bad — the host suggested capabilities that do not exist:
你还可以导出结果为PDF、分享给团队成员、或者设置每周自动调研
Why forbidden: The backend returns next_actions with pre-built parameters for each valid next step. Do not invent capabilities not listed in next_actions.
Bad — the host compressed a full plan card into a summary:
方案概览 主题:喜茶芝芝莓莓 / 方式:定性 / 题目数:21 / 预计耗时:1小时
Why forbidden: reply_markdown must be presented verbatim regardless of length. The backend deliberately generates detailed plan cards — compressing them loses critical information like individual questions, audience strategy, and evaluation notes. If the content is long, show it in full.
reply_markdown directly — it already contains a user-safe error message.# Start a new research conversation
python3 scripts/send_survey_message.py \
--message "Help me run a concept test for a new ready-to-drink tea product" \
--force-new-session
# Start with a normalized industry hint
python3 scripts/send_survey_message.py \
--message "Help me research a new Chagee product launch" \
--industry-hint "现制茶饮" \
--normalized-message "Help me run a concept test for a new freshly made tea product"
# Revise the current plan
python3 scripts/send_survey_message.py \
--message "Change this to a quantitative survey with 400 samples"
# Query current session status directly
python3 scripts/send_survey_message.py \
--message "Check progress" \
--status-only
reply_markdown is available, prefer it over a rewritten summary.WAITING_CONFIRM, preserve the plan-card structure and invite the user to revise or confirm execution.FINISHED, prefer a report-style answer and include the result link when available.UNSUPPORTED_INDUSTRY, explain the limit clearly and invite the user to revise.FAILED, explain that execution failed and offer retry, revise, or restart options.sync_deferred, and use sync_blocking only when the host explicitly needs a blocking response.Frequently asked questions
Use this skill to run a real conversational AI Research survey workflow backed by ABCompass.
The source record exposes this install command: npx skills add https://github.com/bytedance/agentkit-samples --skill "skills/byted-airesearch-survey". Inspect the command and pinned source before running it.
Static rules flagged exec-script, send-data, network in the source; the page lists the matching lines and excerpts.
Alternatives
first-fluke/oh-my-agent
Context-aware translation that preserves tone, style, and natural word order. Use when translating UI strings, documentation, marketing copy, or any multilingual content. Infers register, domain, and style from the source text and surrounding codebase context.
minhnv0807/ai-business-skills
Use when a price has to be set or changed — value-based pricing, anchoring, charm pricing, decoy tiers, good-better-best packaging, discount policy, and margin math, with currency psychology for US, EU, SEA, and LATAM plus dropshipping markup and BE-ROAS. Trigger on 'pricing strategy', 'how much should I charge', 'should I raise prices', 'price tiers', 'customers say it is too expensive', 'dropshipping markup'. Also use when the product is not selling and the user suspects price is the reason. N
narrative-io/narrative-skills-marketplace
Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "
mgiovani/cc-arsenal
Run the checks a GitHub Actions workflow would run, locally, when Actions is unavailable or out of quota. Parses .github/workflows/*.yml, extracts the jobs/steps that gate merges (lint, typecheck, test, build), translates them to local commands respecting the workflow's pinned node/python versions and env, executes them sequentially, and reports a parity table of what passed locally vs. what can't be replicated (service containers, secrets, matrix dimensions) and why. Activates on "CI quota", "A