Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

review-scoring-docx审查 scoring DOCX

Agent Skill

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

总安装

288

周安装

12

GitHub Stars

公开资料未说明

下载量

96
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/timlai666/skills --skill review-scoring-docx

简介

review-scoring-docx 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 它适用于 Word 文档分析、评分标准和线索筛选等研究检索类任务场景。
  • 通过关键词、任务场景或来源线索调用,可结合仓库 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装使用。

SKILL.md

Review Scoring → Word Document

Converts raw product review files into a formatted Word document with two deliverables:

  1. Attribute catalog — a minimum of 30 product attributes inferred from the full review corpus, each anchored to a Maslow need tier and accompanied by an evaluation dimension statement.
  2. Product × attribute score matrix — every product scored 0–10 on every attribute, colour-coded by performance band, with per-attribute averages and per-product totals.

For a worked example using real Amazon reviews, see references/worked-example.md.


Concepts and definitions

Review corpus

All text written by customers about a product, collected across one or more files. A valid review is any entry whose body text exceeds 15 characters after stripping whitespace. No language filter is applied; multilingual corpora are treated identically to monolingual ones.

Attribute

A distinct, evaluable dimension of product quality or experience that surfaces — positively or negatively — across multiple reviews. An attribute is not a feature; it is the *customer's lived experience* of that feature. For example, "anti-fog coating" is a feature; "fog resistance in practice" is an attribute.

Each attribute has four required fields:

FieldDefinition
idZero-padded sequential number (01, 02 … 30+)
labelConcise display name; language matches the user's preference
dimensionOne sentence stating exactly what reviewers say when this attribute is good or bad
maslow_tierWhich Maslow tier this attribute primarily satisfies (see table below)

Maslow tier mapping

Attributes must collectively cover all five tiers. The tiers and their characteristic questions are:

TierNeed typeCore question the attribute answers
1PhysiologicalDoes the product function as the body requires? (sensory, physical comfort)
2SafetyDoes the product reliably protect and hold up over time?
3BelongingDoes the product connect the user to a group, relationship, or shared identity?
4EsteemDoes the product make the user feel valued, seen, and not deceived?
5Self-actualisationDoes the product help the user fully achieve their goal or potential?

Minimum per-tier attribute counts: 5 for tiers 1 and 2, 4 for tiers 3 and 4, 5 for tier 5. Adjust upward if the corpus warrants richer coverage; never go below these floors.

Score

An integer from 0 to 10 expressing the net sentiment signal for one product on one attribute, derived from the entire review set for that product.

BandRangeSignal
Critical failure0–2Near-universal negative; serious liability
Predominantly negative3–4Majority of mentions are complaints
Neutral / insufficient5Mixed signals, or attribute rarely mentioned
Mostly positive6–7Clear majority satisfied; occasional complaints
Strong positive8–9Consistently praised; very few negatives
Near-universal praise10Effectively no negative signal found

Absence rule: if an attribute is never mentioned in any review for a product, assign 5.


Workflow

Step 0 — Locate required skills

Before writing any code, check the available skills listed in your context. You need a docx skill (any skill covering .docx or Word document creation). Read its SKILL.md fully before Step 4.

Step 1 — Ingest reviews

  1. Identify all uploaded review files from the conversation.
  2. For each file, auto-detect the text-bearing column (common names: body, Body, review, text, content).
  3. Load all valid reviews — no sampling, no row limit.
  4. Print a per-product count summary before proceeding.
import csv

def load_reviews(filepath):
    text_col_candidates = ['body', 'Body', 'review', 'Review', 'text', 'content']
    with open(filepath, encoding='utf-8', errors='replace') as f:
        reader = csv.DictReader(f)
        col = next((c for c in text_col_candidates if c in reader.fieldnames), None)
        if col is None:
            raise ValueError(f"No text column found. Headers: {reader.fieldnames}")
        return [r[col].strip() for r in reader
                if r[col].strip() and len(r[col].strip()) > 15]

Step 2 — Discover and freeze the attribute catalog

  1. Read through all reviews across all products to build a holistic picture of the corpus.
  2. Identify recurring themes, complaint patterns, praise patterns, and unmet needs.
  3. Formulate attributes bottom-up from the corpus — do not start from a fixed template.
  4. Ensure all five Maslow tiers are covered at or above minimum floor counts.
  5. Write out the complete catalog with all four required fields before scoring begins.
  6. Freeze it. The catalog must not change after scoring starts.

Attribute discovery heuristics:

  • Recurring noun phrases → candidate attributes
  • Adjective + noun complaints (e.g. "flimsy arms", "blurry vision") → negative-pole definitions
  • Absence evidence (e.g. "wish it came with a case") → packaging / completeness attribute
  • Cross-language mentions count equally — translate and tally together
  • After a first pass, check each Maslow tier for gaps; tier 3 (belonging) is most commonly under-represented

Step 3 — Score every product

For each product:

  1. Read through all its valid reviews.
  2. For each attribute in the frozen catalog, tally the direction and intensity of reviewer mentions.
  3. Weight by frequency (how many reviews mention it) and intensity (how strongly positive or negative).
  4. Assign a single integer 0–10 per the scale defined above.

Store as: scores: dict[product_id, list[int]] — list length equals catalog size, ordered identically to the catalog.

Step 4 — Build the Word document

Consult the docx skill you located in Step 0 for the full API reference. The document has two sections:

Section 1 — Portrait orientation: Attribute catalog table

Columns: id | attribute label | evaluation dimension | Maslow tier

  • Differentiate tiers visually with distinct cell fill colours (one colour per tier, applied consistently to label and tier cells).
  • Dark header row with white bold text.
  • Consistent font throughout; body text 16–18 pt.

Section 2 — Landscape orientation: Product × attribute matrix

Columns: id | attribute label | one column per product | row average

  • Include a review-count sub-header row directly below the product-ID header.
  • Insert tier separator rows (full-width band in the tier's accent colour, bold tier label) before each tier group.
  • Colour-code score cells by band: low → warm red; neutral → warm yellow; good → light green; excellent → strong green. Use a matching text colour within each band.
  • Add a legend row above the matrix explaining the colour bands.
  • Add a product total-average row at the bottom in a distinct dark header colour.

Docx layout rules (apply regardless of docx library)

  • Use absolute units for all table widths — never percentage widths (they break in Google Docs).
  • Set width on both the table-level column-widths array and on every individual cell.
  • Use clear/transparent shading type, not solid fill, to prevent black-background rendering bugs.
  • Landscape section: pass portrait dimensions plus an orientation flag.
  • Never encode newlines as \n in text runs; use separate paragraph elements.

Step 5 — Output

Write the .docx to the working directory, copy to the outputs directory, then call present_files.

Accompany the file with a prose summary stating:

  • Total reviews per product and grand total
  • Languages present in the corpus
  • Top and bottom performers overall
  • The two or three attributes with the widest score variance across products

Hard rules

  1. Never truncate. Every valid review (length > 15 chars) is read for scoring. No sampling.
  2. All languages count. Non-English reviews carry equal weight.
  3. Freeze before scoring. The catalog is finalised before any product is scored.
  4. Minimum 30 attributes. Exception: corpus < 50 total reviews → 20 is acceptable; state the reason.
  5. Integer scores only. Individual scores are whole numbers 0–10.
  6. Absolute table widths. Percentage widths corrupt layout.
  7. Present with present_files. Never ask the user to navigate to the file manually.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.34%
按下载量换算33

Claude

30.88%
按下载量换算30

Cursor

20.97%
按下载量换算20

Gemini CLI

10.32%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills