Agent skill
beam-tracking-ml
Design and refactor beam tracking ML/RL pipelines (CSI teacher vs RSRP student), enforce shape contracts, and produce inference-safe models.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/beam-tracking-ml
SKILL.md
Beam Tracking ML Skill
Use this Skill when:
- translating the RL架構 diagram into code
- refactoring
sionna_beam_tracking_v2.pyideas into modular components - designing observation/action schemas
Guardrails
- Always define and test shapes (B,N_BEAMS) etc.
- Keep student (online) policy lightweight and deterministic.
- Treat CSI-heavy path as offline only unless we explicitly design compression.
Where to put code
- Models:
beam_tracking/model/ - Training scripts:
scripts/(do not bloat runtime xApp) - Interfaces:
beam_tracking/schemas.py
Suggested distillation workflow
- Train teacher on CSI dataset (offline).
- Run teacher over same trajectories, log action distributions.
- Train student to match teacher (KL divergence).
- Optionally fine-tune student with small online data.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?