npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

eplan-docs-ru-skill

v1.0.1

Published

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

Downloads

111

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