Agent skill
vector-spaces
Problem-solving strategies for vector spaces in linear algebra
Install this agent skill to your Project
npx add-skill https://github.com/vibeeval/vibecosystem/tree/main/skills/math/linear-algebra/vector-spaces
SKILL.md
Vector Spaces
When to Use
Use this skill when working on vector-spaces problems in linear algebra.
Decision Tree
-
Check Subspace
- Contains zero vector?
- Closed under addition?
- Closed under scalar multiplication?
- Verify with
z3_solve.py prove
-
Linear Independence
- Set up Ax = 0 where columns are vectors
sympy_compute.py nullspace "A"- Trivial nullspace = independent
-
Basis and Dimension
- Find spanning set, remove dependent vectors
sympy_compute.py rref "A"to find pivot columns- Dimension = number of pivots
-
Change of Basis
- Find transition matrix P
- New coords = P^(-1) * old coords
sympy_compute.py inverse "P"
Tool Commands
Sympy_Nullspace
uv run python -m runtime.harness scripts/sympy_compute.py nullspace "[[1,2,3],[4,5,6]]"
Sympy_Rref
uv run python -m runtime.harness scripts/sympy_compute.py rref "[[1,2,3],[4,5,6]]"
Z3_Prove
uv run python -m runtime.harness scripts/z3_solve.py prove "subspace_closed"
Cognitive Tools Reference
See .claude/skills/math-mode/SKILL.md for full tool documentation.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
python-testing
Python testing strategies using pytest, TDD methodology, fixtures, mocking, parametrization, and coverage requirements.
golang-patterns
Idiomatic Go patterns, best practices, and conventions for building robust, efficient, and maintainable Go applications.
tdd-migration-pipeline
Orchestrator-only workflow for migrating/rewriting codebases with full TDD and agent delegation
hizir
Hızır'ın kullanım kılavuzu. Tüm komutlar, agent'lar, workflow'lar, sistemler burada. /hizir yaz, her şeyi gör.
secret-patterns
30+ service-specific secret detection regex patterns, entropy-based detection, PEM/JWT/Base64 identification, and false positive filtering.
agentica-prompts
Write reliable prompts for Agentica/REPL agents that avoid LLM instruction ambiguity
Didn't find tool you were looking for?