Borrowing it
Nothing to install: this file belongs to SilenceInsect/AIDocxWorkFlow. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/SilenceInsect/AIDocxWorkFlow/main/.cursor/skills/aidocx-feedback-logger/SKILL.mdgit clone --depth 1 https://github.com/SilenceInsect/AIDocxWorkFlowWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/silenceinsect/aidocxworkflow/aidocx-feedback-logger)<a href="https://agentmods.dev/skills/silenceinsect/aidocxworkflow/aidocx-feedback-logger"><img src="https://agentmods.dev/badge/skills/silenceinsect/aidocxworkflow/aidocx-feedback-logger.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00069 | $0.01953 |
| Opus 5 | $0.00034 | $0.00977 |
| Sonnet 5 | $0.00014 | $0.00391 |
| Haiku 4.5 | $0.00007 | $0.00195 |
Grade A, and why
aidocx-feedback-logger scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 246 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AIDocxWorkFlow — 反馈收集与导入 Skill
功能概述
feedback_logger 模块支持从多种来源导入反馈,自动识别 Excel sheet 列名,标准化后保存。
核心函数
import_feedback() — 通用导入
from ai_workflow.feedback_logger import import_feedback
result = import_feedback(
feedback_file="/path/to/feedback.xlsx",
review_file="/path/to/review.xlsx", # 可选
output_dir="/path/to/feedback_logs/",
version="v1.0",
req_name="游戏道具商城系统",
merge_duplicates="latest", # "latest" | "first" | "all"
)
import_from_test_cases_xlsx() — 从 test_cases.xlsx 导入
from ai_workflow.feedback_logger import import_from_test_cases_xlsx
# 自动读「反馈结果」或「执行追踪」sheet
result = import_from_test_cases_xlsx(
xlsx_path="/path/to/test_cases.xlsx",
version="v1.0",
)
CLI 用法
# 从 Excel 导入(自动探测反馈结果 sheet)
python3 -m ai_workflow.feedback_logger --file feedback.xlsx
# 从 test_cases.xlsx 读执行追踪 sheet
python3 -m ai_workflow.feedback_logger --file test_cases.xlsx
# 同时提供反馈和审查结果
python3 -m ai_workflow.feedback_logger \
--file feedback.xlsx \
--review review.xlsx \
--version v1.0
支持的文件格式
Excel 文件
自动探测以下 sheet,按优先级依次查找:
反馈 sheet(import_feedback):
反馈结果执行追踪执行记录用例详情
审查 sheet(import_feedback --review):
审核结果审查结果review
test_cases.xlsx 专属 sheet(import_from_test_cases_xlsx):
反馈结果执行追踪←test_cases.xlsx的这个 sheet 就是反馈数据执行记录
CSV 文件
自动识别 GBK/UTF-8 编码,首行作为列头。
JSON 文件
支持三种格式:
// 格式 1: 顶层数组
[{"case_id": "UI-TC-001", "result": "PASS", ...}]
// 格式 2: 对象含 entries 字段
{"entries": [{"case_id": "...", ...}]}
// 格式 3: 单条记录
{"case_id": "UI-TC-001", "result": "PASS", ...}
自动列名映射
模块自动将各种中文/英文列名映射到标准字段:
| 标准字段 | 支持的中文列名 | 支持的英文列名 |
|---|---|---|
case_id |
用例ID, 用例编号, 测试用例ID | case_id, test_case_id |
result |
执行结果, 测试结果, 执行状态 | result, test_result, status |
actual_result |
实际结果, 实际输出, 观测结果 | actual_result, actual_output |
defect_desc |
缺陷描述, 问题描述, 缺陷说明 | defect_desc, bug_description, issue |
severity |
严重程度, 缺陷等级 | severity, bug_severity, priority |
reviewer |
审核人, 审核者 | reviewer, auditor |
review_result |
审核结果, 审查结果 | review_result, audit_result |
module |
模块, 所属模块 | module |
title |
用例描述, 用例名称 | title, test_title |
execution_time |
执行时间, 测试时间 | execution_time, test_time |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 246 lines · 69 tokens per session scan A 9a88518fd237
aidocx-feedback-logger is a skill published in the GitHub repository SilenceInsect/AIDocxWorkFlow (2 stars, last pushed 1mo ago), licensed MIT. It adds 69 tokens to every session and 1,953 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
spreadsheet-direct-verification
Use a deterministic Python/openpyxl inspection pass to verify workbook structure, counts, marked rows, and output-file existence when delegated spreadsheet summaries seem inconsistent.
spreadsheet-create-verify-gate
Create or edit Excel workbooks with openpyxl-specific pitfall handling, anchored preflight audit, and deterministic post-write proof that every criterion is satisfied.
spreadsheet-proof-gate-merged-fedf41-merged
The derived skill is complete and provides a meaningful enhancement.
define-data
Standalone Phase 4 of SAP UI testing. Authors one tests/ /test-cases/TC-XXX.data.md requirement spec per case marked dataRequired: yes — choosing the narrowest correct source (sql/static/generated/seeded), and generating upload fixtures in the EXACT file format the program parses (xlsx vs csv). Validates that every…
icedq-mapping-doc-rules
Uses a mapping document provided by the user (Excel, CSV, or Word source-to-target mapping specification) to identify and generate iceDQ rules — Validation, Duplicate, Checksum, Recon, and Pushdown. Use whenever the user uploads or points to a mapping doc or ETL mapping sheet and wants rules derived from it, e.g.…
xz-cases
A generator for acceptance-test checklists covering the core feature changes between specified software versions. It writes the checklist to an XLSX spreadsheet, a format used by Microsoft Excel and similar programs.