Sync ParaSkill rewrite-abstract-with-commitments
Browse files- LICENSE +21 -0
- README.md +56 -0
- SKILL.md +125 -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: RewriteAbstractWithCommitments
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# RewriteAbstractWithCommitments
|
| 18 |
+
|
| 19 |
+
`rewrite-abstract-with-commitments` is a ParaSkill research workflow skill for the `writer` family.
|
| 20 |
+
|
| 21 |
+
## Purpose
|
| 22 |
+
|
| 23 |
+
Rewrite a paper abstract so it makes clear, defensible commitments rather than vague promises or overclaims. Use when an abstract diagnosis already identifies weak realization, unclear contribution, unsupported claims, or poor claim calibration, and the user needs a revised abstract with rationale. Output is a revision plus sentence-level reasoning; it does not redesign the method or invent missing experiments.
|
| 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 |
+
RewriteAbstractWithCommitments/
|
| 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 RewriteAbstractWithCommitments ~/.codex/skills/rewrite-abstract-with-commitments
|
| 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,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
name: rewrite-abstract-with-commitments
|
| 3 |
+
description: >-
|
| 4 |
+
Rewrite a paper abstract so it makes clear, defensible commitments rather
|
| 5 |
+
than vague promises or overclaims. Use when an abstract diagnosis already
|
| 6 |
+
identifies weak realization, unclear contribution, unsupported claims, or
|
| 7 |
+
poor claim calibration, and the user needs a revised abstract with rationale.
|
| 8 |
+
Output is a revision plus sentence-level reasoning; it does not redesign the
|
| 9 |
+
method or invent missing experiments.
|
| 10 |
+
metadata:
|
| 11 |
+
owner_model: ParadoxGPT-Writer-4B
|
| 12 |
+
skill_family: writer
|
| 13 |
+
version: "0.1"
|
| 14 |
+
output_type: revision
|
| 15 |
+
default_language: zh
|
| 16 |
+
trigger_keywords: [abstract, rewrite, commitment, overclaim, claim calibration, 摘要, 改写, 承诺]
|
| 17 |
+
required_inputs: [old_abstract, paper_context]
|
| 18 |
+
optional_inputs: [diagnosis, target_realization, claim_constraints, target_venue]
|
| 19 |
+
handoff_to: [diagnose-aha-moment, detect-overclaim-missing-closure, build-intro-argument-chain]
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# Rewrite Abstract With Commitments
|
| 23 |
+
|
| 24 |
+
## Purpose
|
| 25 |
+
|
| 26 |
+
把 abstract 改成一个可审稿的承诺集合:清楚说明问题、关键 gap、核心 insight、方法 move、证据范围和贡献边界。这个 skill 不是润色器,而是帮 Writer 把 abstract 中的每一句都变成有后文闭合责任的 claim。
|
| 27 |
+
|
| 28 |
+
## When to Use
|
| 29 |
+
|
| 30 |
+
- 已有 abstract,但读起来像背景罗列、贡献不清或 insight 被埋住。
|
| 31 |
+
- `diagnose-aha-moment` 已指出 central realization、commitment 或 closure 问题。
|
| 32 |
+
- 需要把过大的 claim 降到实验能支撑的范围内。
|
| 33 |
+
|
| 34 |
+
## Do Not Use
|
| 35 |
+
|
| 36 |
+
- 还不知道论文的核心 realization → 先用 `diagnose-aha-moment`。
|
| 37 |
+
- 主要问题是 claim 没实验支撑 → 先用 `detect-overclaim-missing-closure` 或 `map-claims-to-experiments`。
|
| 38 |
+
- 要规划 introduction 段落链 → 用 `build-intro-argument-chain`。
|
| 39 |
+
|
| 40 |
+
## Required Inputs
|
| 41 |
+
|
| 42 |
+
- `old_abstract`: 原 abstract。
|
| 43 |
+
- `paper_context`: 至少包含 title、problem、method_summary、experiment_summary。
|
| 44 |
+
- `diagnosis`: optional,来自 `diagnose-aha-moment` 的诊断。
|
| 45 |
+
- `target_realization`: optional,希望审稿人获得的核心认知更新。
|
| 46 |
+
- `claim_constraints`: optional,哪些 claim 必须保守、哪些不能写。
|
| 47 |
+
|
| 48 |
+
## Output Contract
|
| 49 |
+
|
| 50 |
+
输出必须至少包含:
|
| 51 |
+
|
| 52 |
+
1. **revised_abstract** - 一版完整 abstract。
|
| 53 |
+
2. **sentence_by_sentence_rationale** - 每句话承担什么承诺,为什么这样写。
|
| 54 |
+
3. **claim_calibration_notes** - 哪些 claim 被加强、弱化或限定范围。
|
| 55 |
+
4. **remaining_risks** - 仍可能被 reviewer 批的点。
|
| 56 |
+
5. **handoff_suggestion** - 如果还有实验/逻辑缺口,应转给哪个 skill。
|
| 57 |
+
|
| 58 |
+
## Procedure
|
| 59 |
+
|
| 60 |
+
1. 从 paper_context 中抽取 problem、gap、core insight、method move、evidence scope。
|
| 61 |
+
2. 对 old_abstract 标注每一句的功能:背景、gap、insight、method、evidence、claim。
|
| 62 |
+
3. 删除或压缩不能服务核心 realization 的背景句。
|
| 63 |
+
4. 重写 abstract,使贡献边界和实验支撑范围一致。
|
| 64 |
+
5. 逐句说明承诺,指出哪些地方需要后文闭合。
|
| 65 |
+
|
| 66 |
+
## Quality Bar
|
| 67 |
+
|
| 68 |
+
一个好的输出必须:
|
| 69 |
+
|
| 70 |
+
- revised_abstract 能让人读出一个清楚的 reviewer realization。
|
| 71 |
+
- 每个强 claim 都能在 method 或 experiment 中找到闭合路径。
|
| 72 |
+
- 不为了显得强而写成普遍结论;范围限定具体。
|
| 73 |
+
- rationale 能解释为什么这么改,而不是只说“更清晰”。
|
| 74 |
+
|
| 75 |
+
一个差的输出:
|
| 76 |
+
|
| 77 |
+
- 只换同义词,没有改变承诺结构。
|
| 78 |
+
- 添加 paper_context 没有提供的新结果。
|
| 79 |
+
- 把 limitation 藏起来,导致后续 reviewer 更容易抓 overclaim。
|
| 80 |
+
|
| 81 |
+
## Failure Modes
|
| 82 |
+
|
| 83 |
+
- **润色替代重构**:只改句子流畅度,不修 claim。
|
| 84 |
+
- **新发明贡献**:为了好看添加论文没有做的东西。
|
| 85 |
+
- **过度保守**:把真正有价值的 insight 弱化成普通工程改进。
|
| 86 |
+
- **忽略证据范围**:实验只在小范围成立,abstract 写成通用规律。
|
| 87 |
+
|
| 88 |
+
## Handoff
|
| 89 |
+
|
| 90 |
+
- 如果 revised_abstract 仍缺核心 realization → `diagnose-aha-moment`
|
| 91 |
+
- 如果发现关键 claim 没有实验闭合 → `detect-overclaim-missing-closure`
|
| 92 |
+
- 如果 abstract 改完后需要规划 introduction 链条 → `build-intro-argument-chain`
|
| 93 |
+
|
| 94 |
+
## Example
|
| 95 |
+
|
| 96 |
+
Input:
|
| 97 |
+
|
| 98 |
+
```
|
| 99 |
+
old_abstract: <背景很长,最后才说 interaction scaling>
|
| 100 |
+
paper_context: <long-horizon agents, method, experiments>
|
| 101 |
+
diagnosis: insight 被埋住,C2 机制简单性证据不足
|
| 102 |
+
```
|
| 103 |
+
|
| 104 |
+
Output:
|
| 105 |
+
|
| 106 |
+
```
|
| 107 |
+
revised_abstract:
|
| 108 |
+
Long-horizon agents are often improved by stronger single-step policies, but
|
| 109 |
+
this leaves interaction itself under-modeled as a scaling resource. ...
|
| 110 |
+
|
| 111 |
+
sentence_by_sentence_rationale:
|
| 112 |
+
S1: 建立 gap - 现有工作偏单步能力。
|
| 113 |
+
S2: 给出 core insight - interaction 是可 scaling 的资源。
|
| 114 |
+
S3: 方法 move - 提出简单交互扩展机制。
|
| 115 |
+
S4: 证据范围 - 在长程任务族上观察持续提升。
|
| 116 |
+
|
| 117 |
+
claim_calibration_notes:
|
| 118 |
+
- 把“universally improves”降为“on long-horizon task families studied here”。
|
| 119 |
+
- 不再声称机制完全解释增益���只写“suggests”。
|
| 120 |
+
|
| 121 |
+
remaining_risks:
|
| 122 |
+
- 机制证据仍偏弱,应补 ablation 或在正文降 claim。
|
| 123 |
+
|
| 124 |
+
handoff_suggestion: detect-overclaim-missing-closure
|
| 125 |
+
```
|
agents/openai.yaml
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
interface:
|
| 2 |
+
display_name: "Rewrite Abstract With Commitments"
|
| 3 |
+
short_description: "Rewrite a paper abstract so it makes clear, defensible commitments rather than vague promi"
|
| 4 |
+
default_prompt: "Use $rewrite-abstract-with-commitments for this research-writing task."
|