eplan-docs-ru-skill
v1.0.1
Published
Навык документации EPLAN на русском языке
Downloads
111
Maintainers
Readme
EPLAN Docs RU — Agent Skill
Agent skill containing the Russian EPLAN Electric P8 2026 documentation as a searchable knowledge base: concepts, dialogs, workflows, glossary, and patterns. Covers 142 chapters — projects & structure, wiring diagrams, devices & designations (OU), terminals, plugs, PLCs, connections & routing, macros, reports & forms, numbering, check runs (control runs), parts database, rights management, and more.
Implements the Agent Skills standard and works in any compatible agent — tested with Pi and Claude Code.
Contents
| Path | Description |
|------|-------------|
| skills/eplan-docs-ru/SKILL.md | Skill entry point — frontmatter, usage rules, chapter index, topical index |
| skills/eplan-docs-ru/chapters/ | 142 condensed chapter notes (original Russian terminology) |
| skills/eplan-docs-ru/glossary.md | EPLAN term glossary with definitions |
| skills/eplan-docs-ru/patterns.md | Work methods and patterns |
| skills/eplan-docs-ru/cheatsheet.md | Cheat sheet: decision rules, selection tables, symptom hints |
Install
Pi
Install as a pi package from a local path, GitHub, or npm:
# local path
pi install /path/to/eplan-docs-ru-skill
# from GitHub
pi install git:github.com/Serhioromano/eplan-docs-ru-skill
# from npm (once published)
pi install npm:eplan-docs-ru-skillTry it without installing:
pi -e /path/to/eplan-docs-ru-skillClaude Code
Skills live in ~/.claude/skills/. Copy or symlink the skill directory there:
mkdir -p ~/.claude/skills
ln -s /path/to/eplan-docs-ru-skill/skills/eplan-docs-ru ~/.claude/skills/eplan-docs-ru
# or copy: cp -r /path/to/eplan-docs-ru-skill/skills/eplan-docs-ru ~/.claude/skills/Directly from the GitHub repository (no manual download needed):
mkdir -p ~/.claude/skills
# 1. Clone the repo (sparse checkout: only the skill directory)
git clone --depth 1 --filter=blob:none --sparse https://github.com/Serhioromano/eplan-docs-ru-skill.git /tmp/eplan-docs-ru-skill
cd /tmp/eplan-docs-ru-skill
git sparse-checkout set skills/eplan-docs-ru
# 2. Install into Claude Code
cp -r skills/eplan-docs-ru ~/.claude/skills/
rm -rf /tmp/eplan-docs-ru-skillOr as a one-liner (clone + copy + cleanup):
git clone --depth 1 https://github.com/Serhioromano/eplan-docs-ru-skill.git /tmp/eplan-docs-ru-skill && \
cp -r /tmp/eplan-docs-ru-skill/skills/eplan-docs-ru ~/.claude/skills/ && \
rm -rf /tmp/eplan-docs-ru-skillRestart Claude Code. The skill is then available automatically — ask any question about EPLAN.
Usage
Ask a question in Russian or any other language; the agent loads the skill and answers from the Russian documentation. For example:
- "Как нумеровать соединения?"
- "How does terminal numbering work in EPLAN?"
- "Какие главы есть?" — get the full chapter index
The skill accepts optional arguments — a topic, an EPLAN term, or a chapter number (ch117, ch083, …).
Publish
make publish v=patch # or minor / major / explicit version