Skip to content
Productivity
Skill

/sn-report-format-discovery

用于用户希望推荐研究成品形式,或最终形式无法从需求中直接判断时。把需求解析为一个简短的 format 字符串,不创建格式文件或 schema。

From plugin
sensenova-skills
5.6k80 skills
Install
$ npx -y skills add OpenSenseNova/SenseNova-Skills --skill sn-report-format-discovery --agent claude-code

How 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/sn-report-format-discovery

Context preview

The summary Claude sees to decide when to auto-load this skill.

用于用户希望推荐研究成品形式,或最终形式无法从需求中直接判断时。把需求解析为一个简短的 format 字符串,不创建格式文件或 schema。

SKILL.md

sn-report-format-discovery.SKILL.md
name: sn-report-format-discovery
description: 用于用户希望推荐研究成品形式,或最终形式无法从需求中直接判断时。把需求解析为一个简短的 format 字符串,不创建格式文件或 schema。

最终形式推荐

根据用户需求确定一个请求级 `format` 字符串。该字符串和 `language` 一样只在本次运行上下文中传递,不写入文件。

输入

  • 原始研究需求 `query`
  • 请求级 `language`
  • 用户明确提出的最终形式(如有)

规则

1. 用户明确指定最终形式时,优先使用用户的名称。 2. 用户未指定时,根据主要阅读任务选择一个简短名称;无法判断时使用 `report`。 3. 常见值包括 `report`、`paper`、`table`、`memo`、`timeline`、`faq`,但这不是封闭枚举。 4. `format` 只表示最终交付形式,不承载章节、摘要、目录、结构偏好或写作规则;这些要求继续保留在原始 query 中。 5. 不搜索外部格式规范,不生成候选对象,不创建 `format_proposal.json`、`format.json` 或任何格式 schema。 6. 不替用户修改研究问题、范围、语言或流程模式。

输出

只返回一行:

format: <一个简短的非空字符串>
Ships withsensenova-skills

The SenseNova model family plugs directly into agent runtimes such as OpenClaw and hermes-agent, with the skills in this repository extending the models with concrete, end-to-end office capabilities.

Get the whole plugin
Stats
5,634
Stars
392
Forks
Active
Maintenance
JavaScript
Language
MIT
License
5d ago
Last commit
5mo ago
Created

Repo: OpenSenseNova/SenseNova-Skills

Other skills on sensenova-skills.

sn-da-excel-workflow
Skill

sn-da-excel-workflow

Excel 数据分析多步编排器。覆盖:(1) 读取多 Sheet Excel 文件并统计行数,(2) 大文件检测(≥10k 行自动 Parquet 优化),(3) 数据清洗(缺失值、文本标准化、无效字符),(4) 条件筛选与分类提取,(5) 跨 Sheet 统计聚合,(6) 导出 Excel/CSV…