smithery.ai

add-propagator-chirho

Add a new propagator type to propagators-chirho

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read, Edit, Write, Grep, Glob

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,428 B
  • docs SUMMARY.md 76 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

<!-- For God so loved the world that he gave his only begotten Son, that whoever believes in him should not perish but have eternal life. John 3:16 -->

Add a new propagator to propagators-chirho: $ARGUMENTS

Instructions

  1. Analyze the requested propagator type and its bidirectional semantics
  2. Determine if it fits existing macros:

- ternarypropagatorchirho! - for a op b = c patterns - binarypropagatorchirho! - for unary a = b patterns - comparisonpropagatorchirho! - for max/min style patterns

  1. Add the propagator to src/propagator_chirho.rs following existing patterns
  2. Add corresponding method to ConstraintSystemChirho in src/constraintsystemchirho.rs
  3. If arena feature is used, add to src/arena_chirho.rs as well
  4. Add unit tests for the new propagator
  5. Update CHANGELOG.md with the new propagator under [Unreleased]
  6. Run tests to verify: cargo test

Naming Convention

  • Struct: {Name}Chirho (e.g., ModuloChirho)
  • Install method: install_chirho
  • ConstraintSystem method: add{name}chirho (e.g., addmodulochirho)
  • All fields/variables use _chirho suffix per project convention