Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

speak-with-profile用个人资料说话

Agent Skill

speak-with-profile 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

279

周安装

12

GitHub Stars

1

下载量

98
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:speak-with-profile(用个人资料说话)
来源仓库:https://github.com/gaelic-ghost/productivity-skills
仓库路径:skills/speak-with-profile
安装命令:
npx skills add https://github.com/gaelic-ghost/productivity-skills --skill speak-with-profile
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gaelic-ghost/productivity-skills --skill speak-with-profile

简介

speak-with-profile 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Speak With Profile

Use this skill as the front door for speech tasks when the workflow needs reusable profiles, consistent disclosure, and reproducible reporting. Treat built-in $speech as the primary synthesis engine, and keep this skill as the policy and profile adapter.

Purpose

  • Normalize speech requests with deterministic profile precedence.
  • Enforce disclosure and manifest policy consistently.
  • Delegate generation to $speech by default in Codex App/CLI conversations.
  • Keep a script fallback for deterministic local/automation execution.
  • Support productivity workflows such as narrated notes, spoken drafts, audio summaries, and hands-free review without dropping accessibility-friendly profile options.

Required UX pattern

  1. Route speech requests through $speak-with-profile first.
  2. Resolve profile/default/override values.
  3. Require disclosure text in end-user output context.
  4. Delegate generation to built-in $speech using resolved fields.
  5. Record effective configuration in a run manifest.

Execution modes

  • delegate (default for conversational usage): use built-in $speech for synthesis.
  • local-cli (fallback for scripted/automation runs): invoke a compatible speech CLI via scripts/speak_with_profile.py.

Use delegate unless there is a concrete reason to run the local script path.

Inputs needed

  • Input source: either the exact text to speak or a path to a text file.
  • Profile choice: a --profile ID if the caller wants a named profile, or no profile if baseline defaults are acceptable.
  • Profile data source: a --profiles-file path when profile-based resolution is required.
  • Delivery guidance: any explicit voice, instructions, speed, or format overrides the caller wants to force.
  • Output intent: target output path or filename expectations for the generated audio.
  • Execution preference: whether built-in $speech is acceptable or deterministic local-cli behavior is required.
  • Playback intent: whether the generated file should also be played locally with open or afplay.
  • Optional skill-local workflow customization from config/customization.yaml or config/customization.template.yaml.

Hard constraints

  • Do not bypass this skill for speech tasks in this repository workflow.
  • Do not modify built-in $speech behavior assumptions; adapt inputs/outputs around it.
  • Never modify a compatible downstream speech CLI from this skill; adapt inputs and outputs around it.
  • Use built-in voices only.
  • Require OPENAI_API_KEY for live API calls.

Disclosure policy

Always include a clear disclosure in user-visible output when speech is produced, for example:

  • "This audio was generated by AI text-to-speech."

If a profile provides disclosure, use it. Otherwise, use the default disclosure above.

Profile resolution order

  1. Explicit wrapper flags (--voice, --speed, --instructions, --format, output path flags).
  2. Selected profile (--profile).
  3. Default profile from profiles file (default_profile).
  4. Baseline defaults (voice=cedar, speed=1.0, format mp3, model gpt-4o-mini-tts-2025-12-15).

Workflow configuration precedence

  1. Explicit user input and wrapper flags.
  2. Skill-local workflow customization in config/customization.yaml, when present.
  3. Skill-local defaults in config/customization.template.yaml.
  4. Workflow defaults described in this skill and references/wrapper-contract.md.

The local wrapper loads supported customization values from config/customization.yaml and config/customization.template.yaml at runtime. Use skill-local customization to guide wrapper defaults and agent decisions. preferredExecutionMode remains documentation-only because the wrapper script implements only local-cli, while the skill-level workflow still treats delegate as the default conversational path.

Workflow

  1. Resolve input text source (--text or --text-file).
  2. Resolve effective workflow settings using explicit input, skill-local customization, then workflow defaults.
  3. Resolve profile and defaults using references/wrapper-contract.md.
  4. Validate configuration against references/profile-schema.md.
  5. Choose execution mode:

- delegate: call built-in $speech with resolved fields. - local-cli: run scripts/speak_with_profile.py.

  1. Emit/validate run manifest and include disclosure.

Output Contract

  • delegate: return a user-visible result that confirms speech generation intent, includes the disclosure text, and surfaces the resolved speech settings that matter for the request.
  • local-cli: produce an audio file at the requested or resolved output path and write an adjacent <audio>.manifest.json file.
  • local-cli manifest/result reporting must include:

- output audio path - manifest path - disclosure text - execution mode (local-cli) - playback result when open or afplay is used

  • Playback failures must remain explicit rather than being treated as silent success.

Failure modes

  • Missing OPENAI_API_KEY: stop before generation and tell the caller that the local environment must provide the API key.
  • Missing text source or unreadable text file: fail fast rather than guessing input content.
  • Missing profiles file when --profile is requested: fail fast and require the caller to provide a valid JSON or YAML profiles file.
  • Invalid profiles file: stop on schema/parse errors and surface the validation failure clearly.
  • Unknown profile ID: fail with the known profile list from the supplied profiles file.
  • Input over 4096 characters: fail fast and require the caller to split or chunk the input before running.
  • Missing compatible speech CLI on the local CLI path: stop and report that --tts-cli-path must point to a valid speech CLI implementation.
  • Downstream speech CLI failure: propagate the subprocess failure rather than masking it.
  • Playback failure with open or afplay: return the deterministic playback failure outcome, record it in the manifest, and respect --stop-on-error / --no-stop-on-error.

References

  • Profile schema and validation rules: references/profile-schema.md
  • Starter profile set and examples: references/starter-profiles.md
  • Adapter contract and mode behavior: references/wrapper-contract.md
  • Skill-local workflow customization: references/customization.md

Validation helper

Use scripts/validate_manifest.py to verify required manifest keys:

uv run --group dev python speak-with-profile/scripts/validate_manifest.py path/to/output/file.manifest.json

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.4%
按下载量换算33

Claude

31.6%
按下载量换算31

Cursor

21.31%
按下载量换算21

Gemini CLI

8.98%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills