/byted-las-asr-pro
增强语音识别(ASR Pro):将音频/视频转写为文本,支持降噪、说话人分离等增强分析。当用户要转写录音/视频、生成字幕、区分说话人或做语音增强分析时触发。
$ npx -y skills add bytedance/agentkit-samples --skill byted-las-asr-pro --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/byted-las-asr-pro
Context preview
The summary Claude sees to decide when to auto-load this skill.
增强语音识别(ASR Pro):将音频/视频转写为文本,支持降噪、说话人分离等增强分析。当用户要转写录音/视频、生成字幕、区分说话人或做语音增强分析时触发。
SKILL.md
byted-las-asr-pro.SKILL.mdname: byted-las-asr-pro
version: "0.3.8"
description: "增强语音识别(ASR Pro):将音频/视频转写为文本,支持降噪、说话人分离等增强分析。当用户要转写录音/视频、生成字幕、区分说话人或做语音增强分析时触发。"
metadata:
category: productivity
lasCliVersion: "0.3.8"
requires:
bins:
- las-cli
cliHelp: "las-cli operators help las_asr_pro"
operatorId: "las_asr_pro"
openclaw:
identity:
- type: tip
env:
- VE_TIP_TOKEN
required: trueASR Pro 语音识别 (`las_asr_pro`)
当用户希望对音频进行高质量语音识别(含降噪、VAD、标点、语种识别、情绪识别、说话人分离等)时使用本 Skill。
注意事项(⚠️ 必须遵守)
- 千万不要让用户输入 AccessKey 和 SecretKey。
- 下载文件只能使用 `las-cli tos download` 命令(兼容 tos 和非 tos 资源)。
- `las-cli operators call` 和 `las-cli price` 命令的输出结果非常重要,必须完整返回给用户。
工作流(严格按步骤执行)
复制此清单并跟踪进度:
执行进度:
- [ ] Step 0: 前置检查
- [ ] Step 1: 初始化与准备
- [ ] Step 2: 预估价格
- [ ] Step 3: 执行任务并呈现结果
- [ ] Step 4: 失败排查
Step 0: 前置检查
版本检查(必须):请执行 las-cli install 0.3.8。若 las-cli 命令不存在,则执行 npm i -g "@volcengine/las-cli@0.3.8"
- **新版本提醒**:请执行 `npm info @volcengine/las-cli version` 查看当前可用的最新 Skill 版本(`las-cli` 与 Skill 版本一一对应)。若返回版本高于本 Skill 标注版本,请先提示用户升级当前 Skill。升级方式:请用户发送自然语言指令 `帮我安装byted-las-asr-pro技能`,等待自动完成安装即可。
- **认证检查**:优先使用运行时自动注入的平台身份;若当前环境未自动注入,再运行 `las-cli config show` 确认旧版凭证 `las.apiKey` 和 `volcengine.region` 已配置。
Step 1: 初始化与准备
- **上传资源**: 若输入为本地音频文件,先上传到 TOS。
# 示例: 上传 input.wav
las-cli tos upload ./input.wav
# 假设返回 "tos_url": "tos://my-bucket/inputs/xxx.wav"
- **准备参数**: 创建 `params.json`,指定输入和输出路径。
{
"input_path": "tos://my-bucket/inputs/xxx.wav",
"output_path": "tos://my-bucket/outputs/asr/"
}Step 2: 预估价格(⚠️ 必须获得用户确认)
`las-cli price` 命令的输出结果非常重要,不要做任何精简、修改或摘要处理。
- **算价**: 必须完整返回以下命令输出的结果(markdown 格式)
las-cli price las_asr_pro \
--params-file ./params.json \
--format markdown- **用户确认**: 输出预估价格后,**必须等待用户确认**。
Step 3: 执行任务并呈现结果(⚠️ 直接输出命令执行结果,不要精简)
`las-cli operators call` 命令的输出结果非常重要,不要做任何精简、修改或摘要处理。
- **执行**: 必须完整返回以下命令输出的结果(markdown 格式)
las-cli operators call las_asr_pro \
--params-file ./params.json \
--format markdown \
--out ./result.mdStep 4: 失败排查
保持原样。
- **检查任务状态**: `las-cli task status <task_id> --operator las_asr_pro`
- **检查输入**: 确认音频格式、TOS 对象是否存在。
- **检查输出**: 确认 `output_path` 目录可写。
- **检查配置**: `las-cli config show`,确认鉴权和 Region。
Read more
name: byted-las-asr-pro
version: "0.3.8"
description: "增强语音识别(ASR Pro):将音频/视频转写为文本,支持降噪、说话人分离等增强分析。当用户要转写录音/视频、生成字幕、区分说话人或做语音增强分析时触发。"
metadata:
category: productivity
lasCliVersion: "0.3.8"
requires:
bins:
- las-cli
cliHelp: "las-cli operators help las_asr_pro"
operatorId: "las_asr_pro"
openclaw:
identity:
- type: tip
env:
- VE_TIP_TOKEN
required: trueASR Pro 语音识别 (`las_asr_pro`)
当用户希望对音频进行高质量语音识别(含降噪、VAD、标点、语种识别、情绪识别、说话人分离等)时使用本 Skill。
注意事项(⚠️ 必须遵守)
- 千万不要让用户输入 AccessKey 和 SecretKey。
- 下载文件只能使用 `las-cli tos download` 命令(兼容 tos 和非 tos 资源)。
- `las-cli operators call` 和 `las-cli price` 命令的输出结果非常重要,必须完整返回给用户。
工作流(严格按步骤执行)
复制此清单并跟踪进度:
执行进度: - [ ] Step 0: 前置检查 - [ ] Step 1: 初始化与准备 - [ ] Step 2: 预估价格 - [ ] Step 3: 执行任务并呈现结果 - [ ] Step 4: 失败排查
Step 0: 前置检查
版本检查(必须):请执行 las-cli install 0.3.8。若 las-cli 命令不存在,则执行 npm i -g "@volcengine/las-cli@0.3.8"
- **新版本提醒**:请执行 `npm info @volcengine/las-cli version` 查看当前可用的最新 Skill 版本(`las-cli` 与 Skill 版本一一对应)。若返回版本高于本 Skill 标注版本,请先提示用户升级当前 Skill。升级方式:请用户发送自然语言指令 `帮我安装byted-las-asr-pro技能`,等待自动完成安装即可。
- **认证检查**:优先使用运行时自动注入的平台身份;若当前环境未自动注入,再运行 `las-cli config show` 确认旧版凭证 `las.apiKey` 和 `volcengine.region` 已配置。
Step 1: 初始化与准备
- **上传资源**: 若输入为本地音频文件,先上传到 TOS。
# 示例: 上传 input.wav las-cli tos upload ./input.wav # 假设返回 "tos_url": "tos://my-bucket/inputs/xxx.wav"
- **准备参数**: 创建 `params.json`,指定输入和输出路径。
{
"input_path": "tos://my-bucket/inputs/xxx.wav",
"output_path": "tos://my-bucket/outputs/asr/"
}Step 2: 预估价格(⚠️ 必须获得用户确认)
`las-cli price` 命令的输出结果非常重要,不要做任何精简、修改或摘要处理。
- **算价**: 必须完整返回以下命令输出的结果(markdown 格式)
las-cli price las_asr_pro \
--params-file ./params.json \
--format markdown- **用户确认**: 输出预估价格后,**必须等待用户确认**。
Step 3: 执行任务并呈现结果(⚠️ 直接输出命令执行结果,不要精简)
`las-cli operators call` 命令的输出结果非常重要,不要做任何精简、修改或摘要处理。
- **执行**: 必须完整返回以下命令输出的结果(markdown 格式)
las-cli operators call las_asr_pro \
--params-file ./params.json \
--format markdown \
--out ./result.mdStep 4: 失败排查
保持原样。
- **检查任务状态**: `las-cli task status <task_id> --operator las_asr_pro`
- **检查输入**: 确认音频格式、TOS 对象是否存在。
- **检查输出**: 确认 `output_path` 目录可写。
- **检查配置**: `las-cli config show`,确认鉴权和 Region。
欢迎来到 AgentKit 代码工坊(Samples)仓库! AgentKit 是火山引擎推出的企业级 AI Agent 开发平台,为开发者提供完整的 Agent 构建、部署和运维解决方案。平台通过标准化的开发工具链和云原生基础设施,显著降低复杂智能体应用的开发部署门槛。 本代码库包含了一系列示例和教程,帮助您理解、实现和集成 AgentKit 的各项功能到您的应用中。
Other skills on agentkit-samples.
- /code-optimization
Optimize code performance through iterative improvements (max 2 rounds). Benchmark execution time and memory usage, compare against baseline implementations, and generate detailed optimization reports. Supports C++, Python, Java, Rust, and other languages.
Open skill - /image-video-gen
根据文字描述生成视频,一个生成图片和视频的工作流技能。依赖 skills: byted-web-search, image-generate, video-generate。注意:此 workflow 没有执行脚本,只是一个描述性的文档。
Open skill - /skills-management
Manage AgentKit skills, SkillHub/skillhub, skill centers, and skill spaces. Use this skill whenever the user has a management intent for AgentKit skills, skill中心, skill 空间, skill space, or skill hub, including listing, inspecting, downloading, fetching, uploading, publishing,
Open skill - /tos-file-access
Upload files or directories to TOS-compatible object storage for Volcano Engine or BytePlus and download files from URLs. Use this skill when (1) Upload Agent-generated files or directories for sharing, (2) Download files from URLs before Agent processing.
Open skill - /veadk-go-skills
根据用户的功能需求,完成与 VeADK-Go 相关的功能; 包括:直接根据需求生成 Agent;将Enio Agent转换为VeADK-Go Agent。
Open skill - /veadk-skills
根据用户的功能需求,完成与 VeADK 相关的功能。
Open skill

