smithery/parcadei

matrices

Problem-solving strategies for matrices in linear algebra

Installation

$ npx skills add smithery/parcadei --skill matrices

Also in this package

Other skills from smithery/parcadei · top by installs.

npx skills add smithery/parcadei

Browse all from smithery/parcadei

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 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
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,261 B
  • docs SUMMARY.md 73 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Matrices

When to Use

Use this skill when working on matrices problems in linear algebra.

Decision Tree

  1. Identify Matrix Type

- Square, symmetric, orthogonal, diagonal? - Check properties with sympycompute.py matrixtype

  1. Basic Operations

- Multiplication: sympycompute.py matmul "A" "B" - Inverse: sympycompute.py inverse "A" - Transpose: sympy_compute.py transpose "A"

  1. Solve Linear Systems

- Ax = b: sympycompute.py linsolve "A" "b" - Check consistency with z3solve.py sat

  1. Decompositions

- LU: sympycompute.py lu "A" - QR: sympycompute.py qr "A" - SVD: sympy_compute.py svd "A"

Tool Commands

Sympy_Inverse

uv run python -m runtime.harness scripts/sympy_compute.py inverse "[[1,2],[3,4]]"

Sympy_Det

uv run python -m runtime.harness scripts/sympy_compute.py det "[[a,b],[c,d]]"

Sympy_Linsolve

uv run python -m runtime.harness scripts/sympy_compute.py linsolve "[[1,2],[3,4]]" "[5,6]"

Cognitive Tools Reference

See .claude/skills/math-mode/SKILL.md for full tool documentation.