Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计异常

polish-transcriptions波兰语转录

Agent Skill

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

总安装

14,954

周安装

494

GitHub Stars

公开资料未说明

下载量

7,071
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:polish-transcriptions(波兰语转录)
来源仓库:https://github.com/zarvent/obsidian-skills
仓库路径:skills/polish-transcriptions
安装命令:
npx skills add https://github.com/zarvent/obsidian-skills --skill 'polish transcriptions'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/zarvent/obsidian-skills --skill 'polish transcriptions'

简介

将原始语音转录转为结构化 Markdown 文档含标题、表格与流程图。

  • 保留说话者个性同时增强内容可读性与导航便利性。
  • 自动添加 YAML frontmatter 并支持 Obsidian 插件兼容格式。
  • 转换过程需比对关键事实防止信息丢失或语义扭曲。
  • polish-transcriptions 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Polish Transcriptions Skill

Transform raw, machine-generated transcriptions into polished, cognitively-ordered Obsidian notes that are both readable and complete.

Objective

Convert poorly transcribed audio/video content (workshops, lectures, meetings, interviews) into well-structured, publication-ready documents while preserving 100% of the original information.

Core Principles

1. Zero Information Loss

[!danger] Critical Requirement Never omit, summarize, or compress information from the original. Every detail, example, tangent, question, and answer must be preserved. The output should contain MORE structure, not LESS content.

2. Cognitive Reorganization

Transform stream-of-consciousness speech into logical document sections:

Speech PatternTransforms To
Topic jumpingGrouped sections with headers
RepetitionSingle consolidated statement
Filler words/false startsClean prose
TangentsCallouts or integrated context
Q&A interruptionsBlockquote dialogues

3. Semantic Structure Over Chronological Order

Reorganize content by meaning, not by when things were said. A 2-hour rambling lecture about three topics becomes three clean sections, even if the speaker jumped between them.


Transformation Process

Phase 1: Analysis

Before writing anything:

  1. Read the entire transcript — Understand all topics covered
  2. Identify main themes — What are the 3-7 core topics?
  3. Categorize content types:

- Core instruction/information - Examples and anecdotes - Q&A interactions - Meta-commentary (jokes, digressions) - Action items or recommendations

  1. Map relationships — Which topics depend on others?

Phase 2: Structure Design

Create a logical outline:

## [Main Topic 1]

### [Subtopic 1.1]

### [Subtopic 1.2]

---

## [Main Topic 2]

...

Use horizontal rules (---) to separate major topic shifts.

Phase 3: Content Transformation

Apply these transformations systematically:

Headers and Hierarchy

## Main Section <!-- H2 for major topics -->

### Subsection <!-- H3 for subtopics -->

#### Point or Example <!-- H4 for specific items when needed -->

Dialogues and Q&A

Preserve speaker identities with blockquotes:

> **Participante:** ¿Cómo funciona X?
> **Instructor:** X funciona de esta manera...

For multi-turn exchanges:

> **Estudiante:** Primera pregunta
> **Profesora:** Respuesta inicial
> **Estudiante:** Pregunta de seguimiento
> **Profesora:** Respuesta expandida

Callouts for Special Content

Content TypeCallout to Use
Key concept/principle> [!important]
Practical advice> [!tip] Recomendación
Warning/caution> [!warning]
Interesting aside> [!note]
Real-world example> [!example]
Quoted wisdom> [!quote]
Action items> [!todo]
Summary> [!abstract] or > [!tldr]
Success/conclusion> [!success]

Tables for Structured Data

Convert comparison discussions into tables:

| Columna 1 | Columna 2 | Columna 3 |
| --------- | --------- | --------- |
| Dato 1    | Dato 2    | Dato 3    |

Lists for Enumerated Content

When the speaker lists things (even implicitly):

- Item one
- Item two
  - Sub-item
- Item three

Mermaid Diagrams for Processes

When a process or flow is described:

graph LR A[Paso 1] --> B[Paso 2] B --> C[Paso 3] C --> D[Resultado]

Code Blocks for Technical Content

Example code from the presentation

def example(): return "formatted code"


Formatting Standards

Frontmatter

Always include appropriate YAML frontmatter:

---
date: YYYY-MM-DD
professor: "[[Speaker Name]]"
# or
speaker: "[[Speaker Name]]"
# optional
tags:
  - workshop
  - topic
---

Text Formatting

PurposeSyntaxExample
Key terms first mention**bold**machine learning
Technical terms` code `SQL
Emphasis*italic**very* important
Highlighting==text====critical deadline==

Links

Create wikilinks for concepts that deserve their own notes:

Esto se relaciona con [[machine learning]] y [[data science]].

Anti-Patterns (What NOT To Do)

❌ Summarizing

<!-- BAD: Lost information -->

El instructor habló sobre varios temas de datos.

<!-- GOOD: Preserves detail -->

El instructor cubrió tres áreas principales:

1. **Integración de datos** — consolidar información de múltiples fuentes
2. **Limpieza y transformación** — ordenar, depurar y preparar los datos
3. **Análisis exploratorio** — comprender patrones y comportamientos

❌ Removing "Unimportant" Content

<!-- BAD: Removes color and context -->

(omitted anecdote about COVID impact)

<!-- GOOD: Preserves as callout -->

> [!example] Caso Real: El Impacto del COVID-19
> En un banco donde trabajé, teníamos modelos de predicción de mora...

❌ Flattening Dialogue

<!-- BAD: Loses attribution -->

Se discutió que SQL es el lenguaje principal.

<!-- GOOD: Preserves interaction -->

> **Estudiante:** ¿Qué es SQL?
> **Profesora:** SQL es el lenguaje de programación de bases de datos.

❌ Over-Structuring

<!-- BAD: Too many headers for simple content -->

#### Definición de Dato

##### Tipo 1

###### Subtipo A

<!-- GOOD: Appropriate nesting -->

### Tipos de Datos

- **Tipo 1:** Descripción
  - Subtipo A

Quality Checklist

Before delivering the polished document:

  • Information complete — All original content is present
  • Logical structure — Grouped by topic, not chronology
  • Frontmatter present — Date, speaker/professor, optional tags
  • Headers used correctly — H2 for sections, H3 for subsections
  • Dialogues preserved — Q&A in blockquote format with speaker names
  • Callouts appropriate — Important points in [!tip], [!important], etc.
  • Tables where helpful — Comparisons and structured data formatted
  • Mermaid diagrams — Processes visualized when described
  • Bold for key terms — First mention of important concepts
  • Wikilinks created — Concepts linked with [[concept]]
  • Horizontal rules — Major topic separations marked with ---
  • Clean prose — No filler words, false starts, or transcription artifacts
  • No orphan headers — Every header has content below it

Example Transformation

Before (Raw Transcription)

bueno entonces ehh vamos a ver lo de las bases de datos entonces
una base de datos es pues como un lugar donde guardas cosas no?
ah esperen me olvidé de decirles mi nombre soy Carmen ehh entonces
como les decía hay diferentes tipos de bases de datos algunas son
relacionales otras no relacionales las relacionales usan SQL que es
un lenguaje de programación bueno no exactamente programación pero
sirve para consultar datos entonces SQL significa structured query
language y sirve para hacer consultas a la base de datos...

After (Polished Document)

---
date: 2025-08-08
professor: "[[Carmen Marín]]"
---

## Introducción a las Bases de Datos

Una **base de datos** es un almacén centralizado donde se guardan
y organizan datos para su posterior acceso y manipulación.

### Tipos de Bases de Datos

| Tipo              | Características                 |
| ----------------- | ------------------------------- |
| **Relacional**    | Utiliza SQL, estructura tabular |
| **No relacional** | NoSQL, estructuras flexibles    |

### SQL (Structured Query Language)

**SQL** es el lenguaje estándar para interactuar con bases de datos
relacionales. Permite realizar consultas, inserciones, actualizaciones
y eliminaciones de datos.

> [!note] Aclaración
> Aunque SQL contiene elementos de programación, técnicamente es un
> lenguaje de consulta, no un lenguaje de programación de propósito general.

Workflow Integration

Suggested Process

  1. Read the obsidian-markdown skill first for syntax reference
  2. Analyze the complete raw transcript
  3. Outline the logical structure
  4. Transform section by section
  5. Review against the quality checklist
  6. Verify no information was lost by comparing key facts

Output Location

Polish transcriptions should be saved to the appropriate location in the user's vault, typically:

  • 03 resources/ for workshops and external content
  • 01 projects/.../classes/ for academic lectures
  • Same directory as source with a new filename

Success Criteria

A successfully polished transcription:

  1. Reads like a well-written article — Not like speech
  2. Contains all original information — Nothing omitted
  3. Uses Obsidian features effectively — Callouts, tables, diagrams
  4. Has clear cognitive structure — Easy to navigate and reference
  5. Preserves speaker personality — Quotes and dialogues maintain voice
  6. Is immediately usable — No further editing needed by user

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenCode

26.46%
按下载量换算1,871

Codex

25.76%
按下载量换算1,821

Antigravity

18.67%
按下载量换算1,320

Gemini CLI

12.32%
按下载量换算871

windsurf

8.27%
按下载量换算585

Cursor

3.45%
按下载量换算244

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills