Agent Skillsbitjaru/styleseed › ss-update

ss-update

GitHub

用于检查和更新 StyleSeed 引擎载荷,保留项目自有设计决策,重新编译并验证有效规则包。

skills/ss-update/SKILL.md bitjaru/styleseed

触发场景

需要升级或同步 StyleSeed 引擎版本时 检查已安装 Skill 的修订版本与发布版本是否一致时

安装

npx skills add bitjaru/styleseed --skill ss-update -g -y
更多选项

不安装直接使用

npx skills use bitjaru/styleseed@ss-update

指定 Agent (Claude Code)

npx skills add bitjaru/styleseed --skill ss-update -a claude-code -g -y

安装 repo 全部 skill

npx skills add bitjaru/styleseed --all -g -y

预览 repo 内 skill

npx skills add bitjaru/styleseed --list

SKILL.md

Frontmatter
{
    "name": "ss-update",
    "description": "Check and update an existing StyleSeed installation by exact rule\/skill revision, preserve project-owned design decisions, then recompile and verify the effective bundle.",
    "allowed-tools": "Read, Write, Edit, Grep, Glob, Bash",
    "argument-hint": "(no arguments needed)"
}

StyleSeed update

Update the engine payload, not the user's product UI. A release version describes a published line; engineRevision identifies the exact maintained rules, skills, entry docs, and palette engine. Two installs with the same release version are not proven equal until their revisions match.

When not to use

  • First installation → /ss-setup or $ss-setup.
  • One new screen or component → /ss-build, /ss-page, or /ss-component.
  • A redesign of old UI → update first, then offer the optional retrofit step below.
  • A heavily forked StyleSeed payload → stop after the dry-run report and request a manual diff.

Ownership boundary

StyleSeed owns installed ss-* skill payloads and compiled .styleseed/effective-rules.md. The project owns STYLESEED.md, application code, components, tokens, assets, and any existing AGENTS.md, CLAUDE.md, or Cursor instructions. Never overwrite project-owned files merely to update StyleSeed.

An update may change design-method behavior, especially across major versions. It is reversible through the user's version control, but it is not correct to promise that every update is additive or non-breaking.

Step 1 — Read-only revision check

From the user's project root, run the bundled checker by its installed path:

node <installed-ss-update>/scripts/check-update.mjs --project-root . --json

Interpret the result exactly:

  • current — installed and published revisions match; stop unless the user explicitly wants a reinstall.
  • update-available — refresh the installed payload even when the semantic versions match.
  • project-bundle-stale — skills are current; skip reinstall and re-resolve the project.
  • legacy-skill-conflict — the retired standalone seven-category reviewer remains beside the canonical skills. Show its path and hash; remove it only after confirming it is not a project-modified skill.
  • remote-revision-unavailable — version-only evidence cannot prove currency. Report the boundary and do not say “up to date.”

Also inspect git status --short. Do not modify files during this step.

Step 2 — Report the update boundary

Before changing anything, report:

StyleSeed update report
- Installed: <version> @ <revision>
- Published: <version> @ <revision>
- Project bundle: <version/revision or not resolved>
- Project worktree: clean | has existing changes
- Will refresh: canonical ss-* skill payloads
- Will preserve: STYLESEED.md, app code, components, tokens, assets, project instructions
- Requires review: compiled rule-bundle diff and any copied legacy engine docs

If the worktree has unrelated changes, preserve them. Recommend a commit or backup before a method update, but do not use destructive reset/checkout commands as an update strategy.

Step 3 — Refresh through the original install channel

Use the same channel that installed StyleSeed:

  • Agent Skills CLI installation: run npx skills add bitjaru/styleseed and select the same project/provider scope. The repository exposes exactly the canonical 23 ss-* skills.
  • Claude/plugin or another provider marketplace: use that provider's normal update action.
  • Vendored source checkout: fetch the intended tag or commit, review the diff, and update the canonical engine as a set. Do not mix files from two revisions.

Do not implement an update with a blind recursive copy into an existing skills directory. The installer must reconcile the managed payload; project-owned files stay outside that operation.

If this skill was invoked only to inspect availability, stop before the external refresh and present the report.

Step 4 — Prove the installed revision

Run the new checker's path again. Require the installed and published engineRevision values to match before describing the engine as current. A matching version string by itself is not proof.

If the installed payload still reports the old revision, stop. Do not recompile the project from a mixed or unproven installation.

Step 5 — Recompile the project context

When STYLESEED.md exists:

  1. Run the installed ss-resolve/scripts/resolve-context.mjs with --project-root . --from-lock STYLESEED.md --agent <agent>.
  2. Inspect the diff for .styleseed/effective-rules.md, .styleseed/manifest.json, and generated palette files. The manifest must record the new engineRevision.
  3. Run the same command with --check; require exit status 0.
  4. Report the old and new bundle hashes. Do not use llms-full.txt as the project context.

The design lock persists selections, but a new engine revision may correctly change the compiled method around those selections. Present that diff instead of hiding it.

Step 6 — Check legacy copied docs

Older projects may contain copied DESIGN-LANGUAGE.md, PRODUCT-PRINCIPLES.md, RULESETS.md, or provider entry files. Detect and report them. Do not overwrite project AGENTS.md, CLAUDE.md, or .cursorrules; recommend replacing only an identifiable StyleSeed-managed block or removing stale duplicate method files after review.

Optional retrofit

Updating the engine does not redesign existing screens. If the user wants a retrofit:

  1. confirm or create STYLESEED.md;
  2. re-score the highest-traffic screen against the new effective bundle;
  3. apply approved fixes with /ss-review or $ss-review;
  4. render and inspect with /ss-verify or $ss-verify;
  5. report before/after evidence without claiming the old score was measured when it was not.

Completion report

Separate these states:

  • installed revision: verified | not verified;
  • project bundle: recompiled and hash-checked | stale | not present;
  • application code: unchanged | explicitly retrofitted;
  • code gate: passed | not run;
  • visual gate: passed from inspected render | not run.

Never call installation, compilation, a build, or a score a visual verification.

版本历史

  • c414969 当前 2026-08-13 14:14

依赖关系

  • suggested bitjaru/styleseed

同 Skill 集合

engine/.claude/skills/ss-a11y/SKILL.md
engine/.claude/skills/ss-audit/SKILL.md
engine/.claude/skills/ss-build/SKILL.md
engine/.claude/skills/ss-component/SKILL.md
engine/.claude/skills/ss-copy/SKILL.md
engine/.claude/skills/ss-dial/SKILL.md
engine/.claude/skills/ss-feedback/SKILL.md
engine/.claude/skills/ss-flow/SKILL.md
engine/.claude/skills/ss-learn/SKILL.md
engine/.claude/skills/ss-lint/SKILL.md
engine/.claude/skills/ss-motion/SKILL.md
engine/.claude/skills/ss-page/SKILL.md
engine/.claude/skills/ss-pattern/SKILL.md
engine/.claude/skills/ss-reference/SKILL.md
engine/.claude/skills/ss-resolve/SKILL.md
engine/.claude/skills/ss-restyle/SKILL.md
engine/.claude/skills/ss-review/SKILL.md
engine/.claude/skills/ss-score/SKILL.md
engine/.claude/skills/ss-setup/SKILL.md
engine/.claude/skills/ss-studio/SKILL.md
engine/.claude/skills/ss-tokens/SKILL.md
engine/.claude/skills/ss-verify/SKILL.md
skills/ss-a11y/SKILL.md
skills/ss-audit/SKILL.md
skills/ss-build/SKILL.md
skills/ss-component/SKILL.md
skills/ss-copy/SKILL.md
skills/ss-dial/SKILL.md
skills/ss-feedback/SKILL.md
skills/ss-flow/SKILL.md
skills/ss-learn/SKILL.md
skills/ss-lint/SKILL.md
skills/ss-motion/SKILL.md
skills/ss-page/SKILL.md
skills/ss-pattern/SKILL.md
skills/ss-reference/SKILL.md
skills/ss-resolve/SKILL.md
skills/ss-restyle/SKILL.md
skills/ss-review/SKILL.md
skills/ss-score/SKILL.md
skills/ss-setup/SKILL.md
skills/ss-studio/SKILL.md
skills/ss-tokens/SKILL.md
skills/ss-verify/SKILL.md
skills/styleseed-design-review/SKILL.md
engine/.claude/skills/ss-update/SKILL.md

元信息

文件数
0
版本
c414969
Hash
1888adb5
收录时间
2026-08-13 14:14

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-14 07:26
浙ICP备14020137号-1 $访客地图$