AgentStack
SKILL verified MIT Self-run

Crystallizing

skill-shmayro-singularity-claude-crystallizing · by Shmayro

Use when a skill has proven itself with consistently high scores across multiple executions and should be locked as a stable, immutable version via /singularity-crystallize

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-shmayro-singularity-claude-crystallizing

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Crystallizing? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Crystallize a Validated Skill

Lock a battle-tested skill version as production-grade. Crystallized skills are immutable — further changes require a new version.

When to Use

  • Skill average score >= 90 with 5+ executions
  • Skill has handled at least one edge case
  • User confirms the skill is ready

Workflow

Step 1: Validate Readiness

Read score file and config:

"${CLAUDE_PLUGIN_ROOT}/scripts/score-manager.sh" trend 

Check requirements:

  • [ ] Average score >= crystallizationThreshold (default: 90)
  • [ ] Execution count >= crystallizationMinExecutions (default: 5)
  • [ ] At least one edge case recorded in score history
  • [ ] Maturity is hardened (not draft or tested)

If not ready, explain what's missing: "This skill needs before crystallization."

Step 2: Confirm with User

Show the skill's full score summary and ask: "Ready to crystallize v? This locks the current version as immutable."

Step 3: Create Git Tag

If ~/.claude/skills/ is a git repository:

cd ~/.claude/skills
git add /
git commit -m "singularity: crystallize  v"
git tag "singularity//v"

If not a git repo, create a backup copy:

mkdir -p ~/.claude/singularity/crystallized//
cp -r ~/.claude/skills// ~/.claude/singularity/crystallized//v/

Step 4: Update Records

Update score file:

  • Set maturity to "crystallized" for the current version

Update registry:

  • Set maturity to "crystallized"

Step 5: Log Telemetry

"${CLAUDE_PLUGIN_ROOT}/scripts/telemetry-writer.sh" log  \
  --trigger "crystallization" \
  --summary "Crystallized v (avg: /100,  runs)"

Report

Crystallized:  v
  Average score: /100 over  executions
  Edge cases handled: 
  Git tag: singularity//v
  Status: LOCKED — further changes require a new version

Rollback

To recover a crystallized version later:

git checkout singularity//v -- /

Or restore from backup:

cp -r ~/.claude/singularity/crystallized//v/ ~/.claude/skills//

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.