AI Skill Hub 推荐使用:古适模版模版 是一款优质的Prompt模板。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的Prompt模板解决方案,这是一个值得深入了解的选择。
古适模版模版的类型模版。古适模版模版的类型模版。
古适模版模版 是经过精心设计和反复验证的专业 Prompt 模板集合。这些 Prompt 框架能够有效激活 Claude、ChatGPT 等大型语言模型的深层能力,让 AI 生成更准确、更有价值的输出结果。无需任何安装,直接复制模板内容到 AI 对话框即可使用。
古适模版模版的类型模版。古适模版模版的类型模版。
古适模版模版 是经过精心设计和反复验证的专业 Prompt 模板集合。这些 Prompt 框架能够有效激活 Claude、ChatGPT 等大型语言模型的深层能力,让 AI 生成更准确、更有价值的输出结果。无需任何安装,直接复制模板内容到 AI 对话框即可使用。
# Prompt 无需安装,直接复制使用 # 支持:Claude / ChatGPT / Gemini / 通义千问 等主流模型 # 使用步骤 # 1. 复制 Prompt 模板内容 # 2. 粘贴到 AI 对话框 # 3. 替换 [占位符] 为实际内容 # 4. 发送后获取结构化输出 # 获取原始文件 git clone https://github.com/yzhao062/agent-style
# 粘贴到 Claude/ChatGPT 使用 # 示例 Prompt 结构: 你是一位 [角色],擅长 [领域]。 请根据以下要求完成任务: 任务背景:[描述背景] 具体要求:[详细说明] 输出格式:[期望格式] # 将 [] 内内容替换为实际需求
# agent-style 配置文件示例(config.yml) app: name: "agent-style" debug: false log_level: "INFO" # 运行时指定配置文件 agent-style --config config.yml # 或通过环境变量配置 export AGENT_STYLE_API_KEY="your-key" export AGENT_STYLE_OUTPUT_DIR="./output"
<a id="readme-top"></a>
```
agent-style enable style-review # auto-detects active skill-capable surfaces
If your project already uses anywhere-agents — a maintained agent configuration for Claude Code, Codex, and other AGENTS.md-compliant tools — agent-style is the default rule pack: no enable step needed. The anywhere-agents bootstrap fetches agent-style's canonical rules at a pinned git tag and composes them into your project's AGENTS.md automatically on every run.
pipx run anywhere-agents # Python path
npx anywhere-agents # Node.js path
Opt out by adding rule_packs: [] to agent-config.yaml at your project root; pin to a specific ref or swap for a fork via rule_packs: - name: agent-style\n ref: <tag>. See anywhere-agents rule-pack composition docs for the full contract.
agent-style review DESIGN.md # human-readable audit agent-style review DESIGN.md --audit-only # machine-readable JSON agent-style review --compare a.md b.md # A/B delta per rule
**What happens on `/style-review DESIGN.md`** (skill path):
1. Deterministic audit of the file against all 21 rules.
2. Skill asks: *"produce a polished draft at `DESIGN.reviewed.md`?"*
3. On yes: writes a revised copy beside the original and shows the diff. **Source file is never touched.**
**What you get from `agent-style review DESIGN.md`** (CLI path): the same deterministic audit — mechanical + structural detectors for em-dashes, jargon, transition openers, clichés, contractions, sentence length, bullet overuse, same-starts, paragraph closers. Semantic rules (vague claims, unsupported claims, etc.) return `status: "skipped"` because they need a skill host's model. No polish from the plain CLI.
See the [Does It Work?](#does-it-work) section above for measured mechanical-violation reductions on Claude Opus 4.7 and OpenAI GPT-5.4.
<details>
<summary><b>Skill workflow in detail (what the SKILL.md tells Claude Code to do)</b></summary>
<br>
1. Shells out to `agent-style review --audit-only DESIGN.md` for the deterministic audit (same JSON as the CLI path).
2. Adds semantic judgment via the host model for the 7 rules that need context-aware reasoning: RULE-01 curse of knowledge, RULE-03 vague language, RULE-04 needless words, RULE-08 uncalibrated claims, RULE-11 stress position, RULE-F term drift, RULE-H citation discipline.
3. Merges deterministic + semantic scorecard; reports per-rule counts and first 5 violations each.
4. Asks the user: *"produce a polished draft at DESIGN.reviewed.md?"*
5. On yes, composes a revision prompt using `references/revision-prompt.md` with hard invariants:
- **No new facts, metrics, citations, links, or code behavior** not in the source.
- Preserve Markdown structure (code fences, tables, frontmatter, links, heading levels, list nesting).
- Preserve meaning and length budget.
6. Writes `DESIGN.reviewed.md` alongside `DESIGN.md`.
7. Re-audits the revised draft; shows before → after scorecard and `diff DESIGN.md DESIGN.reviewed.md`.
Source file is never touched. You merge hunks from the `.reviewed.md` by hand.
</details>
<details>
<summary><b>Uninstall</b></summary>
<br>
Per-tool disable:
bash agent-style disable claude-code # or any other tool you enabled agent-style disable style-review # manifest-based safe removal
For `style-review`, disable reads `.agent-style/skills/style-review/manifest.json`, removes only files whose current sha256 still matches (leaves user-edited files alone and reports them as `drifted`), and cleans up empty directories. Never touches `.agent-style/RULES.md` or other-tool adapters.
Full cleanup of the shared `.agent-style/` data (after disabling every tool you enabled):
bash rm -rf .agent-style/ # POSIX Remove-Item -Recurse -Force .agent-style # PowerShell ```
</details>
<details> <summary><b>Self-verification probe</b></summary> <br>
After running agent-style enable <tool>, ask your agent:
Is agent-style active?
Expected reply:
agent-style v0.3.6 active: 21 rules (RULE-01..12 canonical + RULE-A..I field-observed); full bodies at .agent-style/RULES.md.
For style-review specifically, ask:
Is style-review active?
Expected reply:
style-review active: audit 21 rules (deterministic: RULE-B, D, G, I, 12, 05, 06, A, C, E; semantic via host: RULE-01, 03, 04, 08, 11, F, H); workflow at skills/style-review/SKILL.md.
If the version string or rule count is missing, the file is on disk but not in your agent's active context. Check that your tool's instruction-file reload behavior picked up the new content (some tools require a session restart).
</details>
<details> <summary><b>Complementary Post-Hoc Linting</b></summary> <br>
This repo is read at generation time. For a linter that runs over committed prose in CI, see ProseLint; per-rule check-ID mappings are in enforcement/proselint-map.md. Vale users can plug ProseLint via its existing style-pack ecosystem.
</details>
古适模版模版的类型模版。古适模版模版的类型模版。古适模版模版的类型模版。
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
总体来看,古适模版模版 是一款质量良好的Prompt模板,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | agent-style |
| 原始描述 | 开源Prompt模板:21 writing rules for AI coding and writing agents. Drop-in for Claude Code, Code。⭐498 · Python |
| Topics | promptai-agentsllmprompt-engineeringstyle-guidetechnical-writingpython |
| GitHub | https://github.com/yzhao062/agent-style |
| 语言 | Python |
收录时间:2026-06-13 · 更新时间:2026-06-16 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端