tech-decision-zh

tech-decision-zh is a skill for Claude Code, Codex from AgiWish/hermes-skills-zh. It costs 41 tokens per session (761 once invoked), scanned A, original, MIT.

A Chinese-language generator for Architecture Decision Records, which are documents that explain a technical choice, its alternatives, trade-offs, and risks.

In plain words
What is it for?
Use it to record a proposed, accepted, or retired technology choice and compare the options considered.
Why use it?
It makes technical decisions easier to understand, review, and revisit instead of leaving the reasoning scattered or forgotten.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to record a proposed, accepted, or retired technology choice and compare the options considered.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agiwish/hermes-skills-zh/tech-decision-zh
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AgiWish/hermes-skills-zh --skill tech-decision-zh
Clone the repo
git clone --depth 1 https://github.com/AgiWish/hermes-skills-zh

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for tech-decision-zh

README.md
[![agentmods](https://agentmods.dev/badge/skills/agiwish/hermes-skills-zh/tech-decision-zh/github.svg)](https://agentmods.dev/skills/agiwish/hermes-skills-zh/tech-decision-zh)
Your own site
<a href="https://agentmods.dev/skills/agiwish/hermes-skills-zh/tech-decision-zh"><img src="https://agentmods.dev/badge/skills/agiwish/hermes-skills-zh/tech-decision-zh/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tech-decision-zh

Your own site · 80×15
<a href="https://agentmods.dev/skills/agiwish/hermes-skills-zh/tech-decision-zh"><img src="https://agentmods.dev/badge/skills/agiwish/hermes-skills-zh/tech-decision-zh.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 761 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.00761
Opus 5 $0.00020 $0.00380
Sonnet 5 $0.00008 $0.00152
Haiku 4.5 $0.00004 $0.00076

Measured 11d ago against content hash 2ae931e47b8d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

tech-decision-zh 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 11d 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.

skills/tech-decision-zh/SKILL.md · 99 lines

What it actually says

技术决策记录 (tech-decision-zh)

When to Use

  • "帮我写一份技术选型文档"、"这个决策需要留个记录"
  • 选了某个技术方案,需要说清楚为什么
  • 回顾历史决策,说明当时的背景和权衡
  • /tech-decision-zh [决策背景 + 方案描述]

Quick Reference

/tech-decision-zh [技术决策描述]

可选参数:
  --status=提案     # 正在讨论中的方案
  --status=已采纳   # 已落地执行的决策(默认)
  --status=已废弃   # 被替代的历史决策

Procedure

  1. 收集决策信息(如不完整,追问)

    • 要解决什么问题?
    • 考虑过哪些备选方案?
    • 最终选了什么,为什么?
    • 已知的代价和风险是什么?
  2. 输出 ADR 文档

# ADR-[编号]: [决策标题]

**日期**:[YYYY-MM-DD]
**状态**:[提案 / 已采纳 / 已废弃]
**决策人**:[人名 / 团队]

## 背景

[用 2-3 句话描述当时面临的问题和约束条件。
不要写解法,只写为什么需要做决策。]

## 决策

我们决定:**[一句话说清楚选了什么]**

## 备选方案对比

| 方案 | 优点 | 缺点 | 排除原因 |
|------|------|------|----------|
| [方案A(已选)] | [优点] | [代价] | 已采纳 |
| [方案B] | [优点] | [缺点] | [为什么没选] |
| [方案C] | [优点] | [缺点] | [为什么没选] |

## 影响与代价

**正面影响**:
- [好处1]
- [好处2]

**已知代价**:
- [代价1,以及如何缓解]
- [代价2]

**遗留风险**:
- [风险1:触发条件 + 应对预案]

## 回顾触发条件

以下情况出现时,应重新评估这个决策:
- [条件1]
- [条件2]

Pitfalls

  • 背景部分不要写解法,只写问题和约束
  • 代价要如实记录,不能只写优点
  • 备选方案要认真列出,不能全是稻草人选项

Verification

  • 背景部分清楚说明了为什么要做这个决策
  • 至少列出 2 个以上备选方案
  • 代价和风险诚实记录
  • 有回顾触发条件,方便未来重新评估
Changes

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.

  1. 11d ago First seen · 99 lines · 41 tokens per session scan A 2ae931e47b8d

Subscribe to this mod's changes

tech-decision-zh is a skill published in the GitHub repository AgiWish/hermes-skills-zh (5 stars, last pushed 3mo ago), licensed MIT. It adds 41 tokens to every session and 761 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

hermespace

Full Hermespace pocket workbench for Hermes Agent (v0.18+): concept, dual decode, workbench I/O, fabric skills+MEMORY, FOA desk, Pulse, viewport app-shell, Tailscale serve, pocket boundary, autonomy grid, Desktop plugin, ops boot/doctor/smoke. Use for hermespace, pocket, workbench, FOA, pulse, viewport, access…

PabloTheThinker/hermespace · 100 tokens

21-day-self-interview

A 21-night guided self-reflection routine in which an agent asks three questions each night, remembers the answers, and reflects on them at key points.

Forlives/21-day-self-interview · 68 tokens

awesome-literature-review

A Chinese-language workflow for writing narrative academic literature reviews, which summarize and assess existing research on a topic.

yzbbds520/awesome-literature-review · 312 tokens

persona-compass

Build personality models of colleagues, clients, friends, or family members and get AI-powered communication strategies. Use this skill whenever the user wants to: understand someone's personality, predict how someone will react, get advice on communicating with a difficult person, prepare for a tough conversation…

snowyowlmia/persona-compass · 172 tokens

ai-tips-tricks

An automated workflow for searching the web for practical AI tips, techniques, and workflows, then writing tutorial-style Chinese posts and sending them to Telegram.

0xMulight/human-social-copy · 53 tokens

pingpong

Spontaneous local leisure meetups via a shared agent board: publish, discover and match offers, then negotiate place & time agent-to-agent. ALWAYS use this skill when the user spontaneously wants to do something or says: "publish an offer", "I want to play table tennis / X", "fancy a ...", "who's free for ...", "find…

0xAaronx0/pingpong · 121 tokens