Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

q-topic-finetuningq 主题微调

Agent Skill

q-topic-finetuning 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

706

周安装

30

GitHub Stars

21

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tyrealq/q-skills --skill q-topic-finetuning

简介

用于查找、检索和筛选相关信息,支持关键词或任务场景快速定位结果。

  • 适合在需要根据来源线索定位候选结果时使用,如研究或开发场景。
  • 可结合来源仓库和原始 README 核验具体用法,确保功能匹配需求。
  • 安装方式:通过 npx skills add 从指定 GitHub 仓库添加。
  • 安装前建议确认权限范围和是否会触发联网或文件读写操作。

SKILL.md

Q-Topic-Finetuning

Fine-tune topic modeling outputs into consolidated, theory-driven topic frameworks for academic manuscripts.

Folder Structure

q-topic-finetuning/
├── SKILL.md                                  # This file
├── scripts/
│   ├── classify_outliers.py                  # Outlier reclassification via Gemini
│   ├── generate_implementation_plan.py       # Full plan generation
│   └── update_excel_with_labels.py           # Excel column updates
└── references/
    ├── esports_ugc_example.md                # Worked example
    └── SP_OUTLIER_TEMPLATE.txt               # Outlier classification prompt template

Script Directory

Agent execution instructions:

  1. Determine this SKILL.md file's directory path as SKILL_DIR.
  2. Script path = ${SKILL_DIR}/scripts/<script-name>.
  3. Reference path = ${SKILL_DIR}/references/<ref-name>.
ResourcePurpose
scripts/classify_outliers.pyOutlier reclassification via Gemini
scripts/generate_implementation_plan.pyFull plan generation
scripts/update_excel_with_labels.pyExcel column updates
references/esports_ugc_example.mdWorked example
references/SP_OUTLIER_TEMPLATE.txtOutlier classification prompt template

When to Use

  • Converting raw topic model outputs (BERTopic, LDA, NMF) into manuscript-ready categories
  • Applying theoretical frameworks (legitimacy, stakeholder theory, etc.) to topic clusters
  • Consolidating 50+ topics into 20-50 theoretically meaningful groups
  • Preserving domain-specific distinctions (by entity, event, geography, time)
  • Creating reproducible Excel outputs with classification labels

Workflow Overview

Source Data (Topic Model Excel)
    |
    v
1. Load & Analyze Topics --> identify overlaps, unassigned
    |
    v
2. Define Final Topic Structure --> FINAL_TOPICS dictionary
    |
    v
3. Apply Theoretical Framework --> classify each topic
    |
    v
4. Generate Implementation Plan (MD)
    |
    v
5. Update Source Data with Labels (Excel)

Core Principles

Preservation Rules (Customize per Domain)

Identify what should NEVER be merged based on theoretical importance:

  • Entity-specific: Different companies, teams, people
  • Event-specific: Different conferences, tournaments, time periods
  • Geography-specific: Different countries, regions
  • Stakeholder-specific: Different actor perspectives

Theoretical Framework (Template)

Replace with your relevant framework:

TypeDescriptionExample Topics
Category ADefinitionTopics fitting A
Category BDefinitionTopics fitting B
Category CDefinitionTopics fitting C
Cross-cuttingSpans multipleTopics by entity/domain

Example: Legitimacy Framework (Suchman, 1995)

  • Cognitive: Institutional recognition, taken-for-granted status
  • Pragmatic: Direct stakeholder benefits, practical interests
  • Moral: Normative evaluation, values alignment

Multi-Category Topics

Some topics belong to multiple categories:

  • Track explicitly in assignments dictionary
  • Calculate overlap for reconciliation
  • Display as semicolon-separated: "Category A; Cross-cutting"

Required Inputs

  1. Topic model output (Excel/CSV)

- Columns: Topic ID, Count, Name/Label, Keywords, Representative_Docs (optional)

  1. Merge recommendations (optional)

- Sheets: MERGE_GROUPS, INDEPENDENT_TOPICS

  1. Document data (for label updates)

- Contains individual documents with Topic ID column

Key Code Patterns

Pattern 1: Final Topic Definition

FINAL_TOPICS = {
    'A1': {
        'label': 'Descriptive Label for Topic',
        'theme': 'Category-Subcategory',  # e.g., 'Pragmatic-Fan'
        'sources': [8, 12, 45]  # Original topic IDs to merge
    },
    'A2': {
        'label': 'Another Topic Label',
        'theme': 'Category-Subcategory',
        'sources': [3, 17, 33]
    },
    # Topics can appear in multiple final topics for multi-category
}

Pattern 2: Assignment Mapping

assignments = {}
for code, data in FINAL_TOPICS.items():
    for tid in data['sources']:
        if tid not in assignments:
            assignments[tid] = []
        assignments[tid].append((code, data['theme']))

# Find multi-category topics
multi_cat = {tid: assigns for tid, assigns in assignments.items()
             if len(assigns) > 1}

Pattern 3: Overlap Calculation

total_overlap = sum(
    topics[tid]['count'] * (len(assigns) - 1)
    for tid, assigns in assignments.items()
    if len(assigns) > 1
)

# Verification: non_outlier_docs + total_overlap = table1_total

Pattern 4: Excel Label Update

TOPIC_MAPPING = {
    0: [('A1', 'Category')],
    1: [('A2', 'Category')],
    4: [('B1', 'Category A'), ('C1', 'Cross-cutting')],  # Multi-category
    # ... all topic IDs
}

def get_themes(topic_id):
    if topic_id in TOPIC_MAPPING:
        themes = list(set([m[1] for m in TOPIC_MAPPING[topic_id]]))
        return '; '.join(themes)
    return 'Unknown'

df['Final_Topic_Code'] = df['Topic'].apply(get_final_codes)
df['Final_Topic_Label'] = df['Topic'].apply(get_final_labels)
df['Category_Theme'] = df['Topic'].apply(get_themes)

Handling Common Requests

User RequestAction
"Preserve X separately"Add as independent topic code
"Merge these topics"Combine source IDs into single code
"Exact counts please"Replace ~ approximations with computed totals
"Integrate into tables"Remove standalone sections, embed in category tables
"Count mismatch?"Explain multi-category overlap, show reconciliation
"Keep original style"Preserve existing template structure when updating

Script Templates

See ${SKILL_DIR}/scripts/ for reference implementations:

  • generate_implementation_plan.py - Full plan generation
  • update_excel_with_labels.py - Excel column updates

Adapt these scripts by:

  1. Updating FINAL_TOPICS with your topic structure
  2. Replacing FINAL_LABELS with your labels
  3. Modifying theme categories to match your framework

Verification Checklist

  • All non-outlier topics assigned to at least one category
  • Multi-category topics explicitly tracked
  • Overlap reconciliation verified
  • Domain-specific topics preserved separately
  • Category subtotals match grand total
  • Output file has new classification columns

Outlier Classification (Foundation Model)

For datasets with significant noise or unclustered documents (Topic = -1), use the classify_outliers.py script to reclassify them using a Gemini foundation model.

Workflow

  1. Prepare Prompt: Create a system prompt listing all valid finalized topics + descriptions. See ${SKILL_DIR}/references/SP_OUTLIER_TEMPLATE.txt.
  2. Configure Script: Update valid_topics and file paths in ${SKILL_DIR}/scripts/classify_outliers.py.
  3. Run Classification: # Default uses GEMINI_MODEL env var or standard Flash model python "${SKILL_DIR}/scripts/classify_outliers.py" # Or specify a model version python "${SKILL_DIR}/scripts/classify_outliers.py" --model gemini-3-flash-preview

- Uses Google Gemini Foundation Models (supports Flash, Pro, etc.) - Auto-retries invalid outputs - Updates Final_Topic_Label, classification_confidence, and key_phrases columns

When to Use

  • You have >10% outlier documents (Topic -1)
  • You have a stable final topic list (from Table 1)
  • You want to "clean up" the dataset for final analysis

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.23%
按下载量换算89

Claude

32.25%
按下载量换算80

Cursor

18.24%
按下载量换算45

Gemini CLI

10.77%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills