Sync ParaSkill reframe-limitations-honestly
Browse files- LICENSE +21 -0
- README.md +56 -0
- SKILL.md +118 -0
- agents/openai.yaml +4 -0
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2026 bhxdianzhang
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- zh
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- codex-skill
|
| 8 |
+
- ai-agent
|
| 9 |
+
- scientific-writing
|
| 10 |
+
- research-workflow
|
| 11 |
+
- paraskill
|
| 12 |
+
- paradoxgpt
|
| 13 |
+
- writer
|
| 14 |
+
pretty_name: ReframeLimitationsHonestly
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# ReframeLimitationsHonestly
|
| 18 |
+
|
| 19 |
+
`reframe-limitations-honestly` is a ParaSkill research workflow skill for the `writer` family.
|
| 20 |
+
|
| 21 |
+
## Purpose
|
| 22 |
+
|
| 23 |
+
Handle a paper's weaknesses/limitations WITHOUT gaming the reviewer. Grounded in ARGAR's strength-weakness asymmetry: trying to dissolve weaknesses backfires 31.6% of the time, so this skill only reframes a limitation when there is a LEGITIMATE design rationale, and otherwise honestly acknowledges it and hands off to add evidence. It explicitly watches for (and refuses) limitation-laundering moves like reframing scarcity as design intent when untrue.
|
| 24 |
+
|
| 25 |
+
## Metadata
|
| 26 |
+
|
| 27 |
+
- Family: `writer`
|
| 28 |
+
- Owner model: `ParadoxGPT-Writer-4B`
|
| 29 |
+
- Output type: `revision`
|
| 30 |
+
- Version: `0.1`
|
| 31 |
+
- Default language: `zh`
|
| 32 |
+
|
| 33 |
+
## Included Files
|
| 34 |
+
|
| 35 |
+
```text
|
| 36 |
+
ReframeLimitationsHonestly/
|
| 37 |
+
SKILL.md
|
| 38 |
+
agents/openai.yaml
|
| 39 |
+
README.md
|
| 40 |
+
LICENSE
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
`SKILL.md` is the executable skill instruction. `README.md` is the Hugging Face card.
|
| 44 |
+
|
| 45 |
+
## Installation
|
| 46 |
+
|
| 47 |
+
Copy this folder into a Codex-discoverable skills directory, or reference `SKILL.md` directly from an agent workflow.
|
| 48 |
+
|
| 49 |
+
```bash
|
| 50 |
+
mkdir -p ~/.codex/skills
|
| 51 |
+
cp -r ReframeLimitationsHonestly ~/.codex/skills/reframe-limitations-honestly
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## Source
|
| 55 |
+
|
| 56 |
+
This skill is part of the ParaSkill library for ParadoxGPT. The full routing table is maintained in `SKILL_INDEX.json` in the source bundle.
|
SKILL.md
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
name: reframe-limitations-honestly
|
| 3 |
+
description: >-
|
| 4 |
+
Handle a paper's weaknesses/limitations WITHOUT gaming the reviewer. Grounded
|
| 5 |
+
in ARGAR's strength-weakness asymmetry: trying to dissolve weaknesses
|
| 6 |
+
backfires 31.6% of the time, so this skill only reframes a limitation when
|
| 7 |
+
there is a LEGITIMATE design rationale, and otherwise honestly acknowledges it
|
| 8 |
+
and hands off to add evidence. It explicitly watches for (and refuses)
|
| 9 |
+
limitation-laundering moves like reframing scarcity as design intent when
|
| 10 |
+
untrue.
|
| 11 |
+
metadata:
|
| 12 |
+
owner_model: ParadoxGPT-Writer-4B
|
| 13 |
+
skill_family: writer
|
| 14 |
+
version: "0.1"
|
| 15 |
+
output_type: revision
|
| 16 |
+
default_language: zh
|
| 17 |
+
trigger_keywords: [limitation, weakness, reframe, acknowledge, rebuttal, dissolving weakness, 局限, 弱点, 诚恳, limitation]
|
| 18 |
+
required_inputs: [paper_context, limitations, weaknesses]
|
| 19 |
+
optional_inputs: [target_venue]
|
| 20 |
+
handoff_to: [map-claims-to-experiments, detect-limitation-laundering, rewrite-abstract-with-commitments]
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Reframe Limitations Honestly
|
| 24 |
+
|
| 25 |
+
## Purpose
|
| 26 |
+
|
| 27 |
+
处理 weakness/limitation,**但不 gaming 审稿人**。依据 ARGAR 的 strength-weakness asymmetry:**消 weakness 反噬率 31.6%**,所以本 skill 只在有**正当设计理由**时才 reframe,否则诚实承认并 handoff 去补证据。同时主动识别并拒绝 limitation laundering(把稀缺说成设计、诱饵式 limitation 等不诚实手法)。
|
| 28 |
+
|
| 29 |
+
## When to Use
|
| 30 |
+
|
| 31 |
+
- 论文有真实 limitation,要想清楚怎么处理(reframe / 承认 / 补)。
|
| 32 |
+
- rebuttal 前判断哪些 weakness 能诚实回应、哪些不能。
|
| 33 |
+
- 想避免"试图掩盖弱点反而被审得更狠"。
|
| 34 |
+
|
| 35 |
+
## Do Not Use
|
| 36 |
+
|
| 37 |
+
- 想用不诚实的 reframing 提高 perceived merit → 禁止(这就是 ARGAR 揭露的 gaming,转 `detect-limitation-laundering`)。
|
| 38 |
+
- 想加实验真解决 weakness → 用 `map-claims-to-experiments`。
|
| 39 |
+
- 想改 abstract 措辞降 claim → 用 `rewrite-abstract-with-commitments`。
|
| 40 |
+
|
| 41 |
+
## Required Inputs
|
| 42 |
+
|
| 43 |
+
- `paper_context`: 全文
|
| 44 |
+
- `limitations`: 论文自陈的 limitation
|
| 45 |
+
- `weaknesses`: 已识别的弱点(来自 review 或自检)
|
| 46 |
+
|
| 47 |
+
## optional Inputs
|
| 48 |
+
|
| 49 |
+
- `target_venue`: 影响该 venue 对 limitation 的容忍度
|
| 50 |
+
|
| 51 |
+
## Output Contract
|
| 52 |
+
|
| 53 |
+
对每个 weakness/limitation,输出:
|
| 54 |
+
|
| 55 |
+
1. **honest_reframe_possible** — yes/no。
|
| 56 |
+
2. 若 yes:**reframe**(带正当设计理由,且理由为真)+ rationale。
|
| 57 |
+
3. 若 no:**acknowledge**(诚实承认)+ **suggested_fix**(补什么实验/改什么 claim)。
|
| 58 |
+
4. **laundering_warnings** — 检测到的 laundering 倾向(如"把稀缺说成 design"但实际不成立),明确拒绝并说明为何不诚实。
|
| 59 |
+
5. **priority** — 先处理哪个 weakness(避免在反噬区白费力气)。
|
| 60 |
+
|
| 61 |
+
## Procedure
|
| 62 |
+
|
| 63 |
+
1. 对每个 weakness 判断:是否存在**真实**的设计理由可以重新框定?
|
| 64 |
+
2. 有真理由 → 给 honest reframe(理由必须可核查为真)。
|
| 65 |
+
3. 无真理由 → 不掩盖;诚实 acknowledge + 给 suggested_fix(handoff)。
|
| 66 |
+
4. 扫描是否有 laundering 倾向(稀缺→design?诱饵 limitation?),有则 warning + 拒绝。
|
| 67 |
+
5. 按"能诚实回应的优先、反噬风险高的谨慎"排序。
|
| 68 |
+
|
| 69 |
+
## Quality Bar
|
| 70 |
+
|
| 71 |
+
一个好的输出必须:
|
| 72 |
+
|
| 73 |
+
- 每个 yes 的 reframe 都附可核查为真的理由。
|
| 74 |
+
- 每个 no 都诚实承认并指向具体 fix,不掩盖。
|
| 75 |
+
- laundering_warnings 抓住不诚实倾向并拒绝。
|
| 76 |
+
|
| 77 |
+
一个差的输出:
|
| 78 |
+
|
| 79 |
+
- 把无理由的弱点硬 reframing(laundering)。
|
| 80 |
+
- 笼统"我们已改进"而不说怎么改。
|
| 81 |
+
- 在高反噬区强行消 weakness。
|
| 82 |
+
|
| 83 |
+
## Failure Modes
|
| 84 |
+
|
| 85 |
+
- **limitation laundering**:稀缺→design / 诱饵 limitation(应被本 skill 拒绝;也会被 `detect-limitation-laundering` 抓)。
|
| 86 |
+
- **强行消 weakness**:无理由硬驳,触发 31.6% 反噬。
|
| 87 |
+
- **虚假承认**:嘴上 acknowledge 实际掩盖。
|
| 88 |
+
|
| 89 |
+
## Handoff
|
| 90 |
+
|
| 91 |
+
- weakness 需要补实验 → `map-claims-to-experiments`
|
| 92 |
+
- 怀疑自己/他人在 laundering → `detect-limitation-laundering`
|
| 93 |
+
- 需要降 abstract claim 措辞以匹配证据 → `rewrite-abstract-with-commitments`
|
| 94 |
+
|
| 95 |
+
## Example
|
| 96 |
+
|
| 97 |
+
Input:
|
| 98 |
+
|
| 99 |
+
```
|
| 100 |
+
weaknesses:
|
| 101 |
+
- W1: 只有 2 个数据集
|
| 102 |
+
- W2: 缺 mechanism ablation
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
Output(节选):
|
| 106 |
+
|
| 107 |
+
```
|
| 108 |
+
W1:
|
| 109 |
+
honest_reframe_possible: no("complementary regimes"非真理由 → laundering 风险)
|
| 110 |
+
acknowledge: 承认数据集规模有限。
|
| 111 |
+
suggested_fix: 增加至少 1 个 OOD 数据集(→ map-claims-to-experiments)。
|
| 112 |
+
laundering_warnings: 勿把"2 个数据集"说成"complementary regimes"——除非真有互补证据,否则是 laundering。
|
| 113 |
+
W2:
|
| 114 |
+
honest_reframe_possible: no
|
| 115 |
+
acknowledge: 缺 ablation 是真缺陷。
|
| 116 |
+
suggested_fix: 补累积机制 ablation。
|
| 117 |
+
priority: 先 W2(可补实验真解决),W1 诚实承认即可,勿硬 reframing。
|
| 118 |
+
```
|
agents/openai.yaml
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
interface:
|
| 2 |
+
display_name: "Reframe Limitations Honestly"
|
| 3 |
+
short_description: "Handle a paper's weaknesses/limitations WITHOUT gaming the reviewer"
|
| 4 |
+
default_prompt: "Use $reframe-limitations-honestly for this research-writing task."
|