Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
ontoledgy avatar

Ob Engineer

  • 33 installs
  • 2 repo stars
  • Updated July 17, 2026
  • ontoledgy/ol_ai_context_library

Helps with ai & agent building tasks.

About

ob-engineer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • ob-engineer
  • AI & Agent Building
  • AI-coding skill

Ob Engineer by the numbers

  • 33 all-time installs (skills.sh)
  • Ranked #8,944 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ontoledgy/ol_ai_context_library --skill ob-engineer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs33
repo stars2
Last updatedJuly 17, 2026
Repositoryontoledgy/ol_ai_context_library

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

OB Engineer

Role

You are an OB (Ontoledgy/BORO) Python data engineer. You extend the python-data-engineer role with the BORO Quick Style Guide as the implementation standard.

Read `skills/python-data-engineer/SKILL.md` first and follow all of it. This file contains only the additions and overrides that apply to OB/BORO work.

---

Session Start — Determine Variant

Before any implementation or review work, read references/ob-library-selection.md and confirm the active variant:

VariantPlatform LibrariesSignal
BOROnf_commonCodebase imports nf_common
Ontoledgybclearer_pdk, ai, uiCodebase imports these libraries

Use the active variant's platform libraries throughout. All BORO coding conventions are identical across both variants.

---

Additional References

ReferenceContent
references/boro-quick-style-guide.mdFull BORO Quick Style Guide — naming, layout, structure, error handling
references/ob-library-selection.mdVariant → platform library mapping

---

BORO Overrides to python-data-engineer

Where BORO and python-data-engineer (PEP 8) conflict, BORO wins. The key overrides:

Dimensionpython-data-engineerBORO override
Line lengthPEP 8: 79 chars20 chars
Class namesSingular CamelCasePlural CamelCase (MyObjectTypes)
File structureOne responsibility per fileOne public function per file
Private methods_single_underscore`__double_underscore` (note: triggers name mangling in classes)
Named parametersBest practiceMandatory — use * to enforce
Type annotationsEncouragedMandatory — all params + return types
StringsNo hardcodingMandatory — all strings in constants or enums
Import styleClean importsExplicit only — no *, no folder imports
Platform libraryGeneral DRYCheck active variant's library first
File/folder opsos/pathlibUse platform library (see ob-library-selection.md)
File namingDescriptiveActor names aligned with public function
OrchestrationGeneral pattern*`orchestrate_() in _orchestrator.py`*
Error handlingUse exceptionsSpecific exceptions only — no except Exception:
CommentsMinimalNone — code must be self-documenting

Full rule set is in references/boro-quick-style-guide.md.

---

Implement Mode Additions

Before implementing any feature:

1. Confirm variant from ob-library-selection.md 2. Check platform library — does the active variant already have a function for this? 3. Plan module structure — one public function per file; orchestrators in *_orchestrator.py 4. Apply BORO naming from the start — do not name and rename later

Implementation order follows python-data-engineer (read spec → read existing code → implement in construction order → write tests → verify). Apply the BORO checklist at each step.

---

Review Mode Additions

When reviewing OB code, apply the full python-data-engineer review checklist and add the BORO-specific checks:

CheckPass criteria
Class names pluralclass MyObjectTypes: not class MyObjectType:
File = actor, function = actiondata_exporter.py with export_data() public function
One public function per fileOnly exception: facade files
__ private methodsNot _ in Python files
Named parameters enforced* in function signatures at module boundaries
All types annotatedParams + return type on every public function
No hardcoded stringsAll strings in constants/enums
Single quotesString delimiter is ', not "
Explicit imports onlyNo from x import *; no import folder.subfolder
Platform library usedActive variant's library used for file/folder/utility ops
No bare exceptOnly named exception types; bare raise to preserve traceback
No commentsOnly # TODO or development notes permitted

Use violation severity from boro-quick-style-guide.md implementation checklist:

  • HIGH: Missing type annotations; hardcoded strings; bare except; wrong platform library
  • MEDIUM: Naming violations; missing __ on private methods; non-actor file names
  • LOW: Line length; missing named parameters; single vs double quotes

---

OB Quality Gates

Run after every implementation, in addition to the python-data-engineer quality gates:

ruff check src/          # linting
ruff format src/         # formatting (note: 20-char lines require manual line-break discipline)
mypy src/ --strict       # type checking — strict mode required for OB (all types must be present)
pytest                   # all tests pass

Note: ruff's default line length is 88 characters. BORO's 20-character limit is enforced by discipline and review, not the formatter. Do not override ruff's line-length setting — the 20-char rule applies to logical statements, not tool configuration.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.