edulab

edulab is a skill for Claude Code, Codex from renky1025/agent-skills. It costs 76 tokens per session (795 once invoked), scanned A, original, MIT.

A Chinese-language mathematics tool that creates interactive 3D explanations for solid-geometry problems and adjustable 2D graphs for functions. The result is a single HTML file that can be opened in a browser.

In plain words
What is it for?
Use it for Chinese secondary-school geometry problems, vector-based solutions, symbolic checks, and interactive graphs of common or custom functions.
Why use it?
It turns difficult calculations and changing formulas into visual demonstrations, including sliders for exploring how parameters affect a graph.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it for Chinese secondary-school geometry problems, vector-based solutions, symbolic checks, and interactive graphs of common or custom functions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/renky1025/agent-skills/edulab
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add renky1025/agent-skills --skill edulab
Clone the repo
git clone --depth 1 https://github.com/renky1025/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for edulab

README.md
[![agentmods](https://agentmods.dev/badge/skills/renky1025/agent-skills/edulab/github.svg)](https://agentmods.dev/skills/renky1025/agent-skills/edulab)
Your own site
<a href="https://agentmods.dev/skills/renky1025/agent-skills/edulab"><img src="https://agentmods.dev/badge/skills/renky1025/agent-skills/edulab/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for edulab

Your own site · 80×15
<a href="https://agentmods.dev/skills/renky1025/agent-skills/edulab"><img src="https://agentmods.dev/badge/skills/renky1025/agent-skills/edulab.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 795 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00076 $0.00795
Opus 5 $0.00038 $0.00398
Sonnet 5 $0.00015 $0.00159
Haiku 4.5 $0.00008 $0.00080

Measured 10d ago against content hash cc554aff836c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

edulab scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 10 executable files (assets/vendor/CSS2DRenderer.js, assets/vendor/OrbitControls.js, assets/vendor/three.min.js, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

edulab/SKILL.md · 56 lines

What it actually says

edulab

中高考数学可视化:空间几何 3D 解题演示 + 函数图形参数可控可视化。产物为单文件交互式 HTML。

何时使用

  • 用户给出立体几何题(中高考风格),需要 3D 演示解题过程
  • 用户想要函数图像且希望调参看变化(滑块联动)
  • /edulab <题目或函数>

工作流

路径约定:下文 <skill> 指本技能安装目录(如 ~/.claude/skills/edulab)。运行脚本前请先 cd 到该目录,或将其替换为实际路径。Python 需已安装 sympy(建议:python3 -m venv .venv && .venv/bin/pip install sympy)。

几何模块

  1. 读题,确定立体类型与参数,写入 spec JSON(契约见 references/schema.md;题型清单见 references/taxonomy.md)。支持 query.type: line_plane_angle / line_line_angle / dihedral_angle / point_plane_distance / volume_tetra / parallel_perp / skew_distance / circumsphere / three_views / surface_shortest_path / insphere;solid: cube/cuboid/tetra/prism3/pyramid4/cylinder/cone/sphere。
  2. 求解(需用已安装 sympy 的 Python 3):
    cd <skill>/scripts/geometry
    python3 geometry_solver.py <spec.json> <scene.json>
    
    solver 内含 sympy 计算,输出精确值 + 数值。检查 steps 与 result 是否与标准答案一致,不一致则修 spec 重跑,不得静默交付错误答案。
  3. 生成 HTML(加 --offline 内联 Three.js,无网环境可打开):
    python3 build_html.py <scene.json> <out.html> [--offline]
    
  4. present_files 打开 out.html。

函数模块

  1. 确定函数族(quadratic/linear/inverse/trig/exp/log/power 或 custom 自由表达式)。custom 时 params 传 {"expr": "sin(x)/x"},表达式经 safe_expr.py 安全解析(禁 eval),非法输入直接拒绝。
  2. 生成 scene(参数写 JSON 文件传入):
    cd <skill>/scripts/function
    python3 function_engine.py quadratic <params.json> <scene.json>
    
  3. python3 build_html.py <scene.json> <out.html> 后 present_files。

扩展约定

  • 新几何题型:geometry_solver.py 加 query type 分支 + taxonomy.md 更新状态。
  • 新函数族:function_families.py 加项 + template_2d.html 的 f()/computeProps() 加分支。
  • 新立体:solids.py 加 vertices/edges。
  • 文件写入禁 Box Drawing 等 Unicode 装饰字符(防乱码);中文标签走 DOM/Canvas 文本。
  • 自由函数表达式若支持,禁 eval/Function,须安全 AST 解析。

设计文档

完整架构、阶段规划、已验证结论见 references/design.md。

Files

What ships with it

33 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 56 lines · 76 tokens per session scan A cc554aff836c

Subscribe to this mod's changes

edulab is a skill published in the GitHub repository renky1025/agent-skills (11 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 795 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

design-taste-frontend

Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.

Leonxlnx/taste-skill · 61 tokens

image-to-code

Elite website image-to-code skill for Codex. For visually important web tasks, it must first generate the design image(s) itself, deeply analyze them, then implement the website to match them as closely as possible. In Codex, it must prefer large, readable, section-specific images instead of tiny compressed boards…

Leonxlnx/taste-skill · 116 tokens

design-taste-frontend-v1

The original v1 taste-skill, preserved for projects depending on its exact behavior. The current default is design-taste-frontend (v2 experimental), which is a substantial rewrite. Use this v1 install name only if you need exact backward compatibility.

Leonxlnx/taste-skill · 61 tokens

redesign-existing-projects

Upgrades existing websites and apps to premium quality. Audits current design, identifies generic AI patterns, and applies high-end design standards without breaking functionality. Works with any CSS framework or vanilla CSS.

Leonxlnx/taste-skill · 45 tokens

industrial-brutalist-ui

Raw mechanical interfaces fusing Swiss typographic print with military terminal aesthetics. Rigid grids, extreme type scale contrast, utilitarian color, analog degradation effects. For data-heavy dashboards, portfolios, or editorial sites that need to feel like declassified blueprints.

Leonxlnx/taste-skill · 57 tokens

high-end-visual-design

Teaches the AI to design like a high-end agency. Defines the exact fonts, spacing, shadows, card structures, and animations that make a website feel expensive. Blocks all the common defaults that make AI designs look cheap or generic.

Leonxlnx/taste-skill · 53 tokens