eplan-docs-ru-skill

Навык документации EPLAN на русском языке

Packages

Package details

skill

Install eplan-docs-ru-skill from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:eplan-docs-ru-skill
Package
eplan-docs-ru-skill
Version
1.0.1
Published
Aug 9, 2026
Downloads
136/mo · 13/wk
Author
serhioromano
License
MIT
Types
skill
Size
1.5 MB
Dependencies
0 dependencies · 0 peers
Pi manifest JSON
{
  "skills": [
    "./skills"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

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-skill

Try it without installing:

pi -e /path/to/eplan-docs-ru-skill

Claude 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-skill

Or 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-skill

Restart 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

License

MIT