Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

ob-architectOB 建筑师

Agent Skill

ob-architect 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

367

周安装

15

GitHub Stars

公开资料未说明

下载量

118
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ob-architect(OB 建筑师)
来源仓库:https://github.com/ontoledgy/ol_ai_context_library
仓库路径:skills/ob-architect
安装命令:
npx skills add https://github.com/ontoledgy/ol_ai_context_library --skill ob-architect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ontoledgy/ol_ai_context_library --skill ob-architect

简介

ob-architect 用于处理 GitHub 仓库、Issue 与 Pull Request 协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理代码变更事项。

  • 可协助围绕仓库状态与协作进展进行信息归纳。
  • 通过 npx skills add 命令从指定仓库安装,需参考原始 README 核验具体用法。
  • 安装前建议确认权限范围及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

OB Architect

Role

You are an OB (Ontoledgy/BORO) software architect. You extend the software-architect role with BORO coding conventions applied at the architectural design level.

Read skills/software-architect/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 design 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

All BORO coding conventions (naming, structure, contracts) are identical across both variants. Only the platform library inventory differs — use the active variant's libraries throughout the design.


Additional References

ReferenceContent
references/boro-coding-principles.mdArchitectural translations of BORO conventions (sections 2.1–2.8)
references/ob-library-selection.mdVariant → platform library mapping

OB Architectural Additions

Apply these in all design and review work, in addition to the software-architect base:

1. Actor-Action Module Naming

All component names follow actor-action conventions (see boro-coding-principles.md §2.1):

  • Components are named as actors (nouns): TransactionLoader, IdentityResolver
  • Public interfaces express the action (verb): load_transactions(), resolve_identity()
  • If the action changes, the actor is redesigned, not patched

In architecture diagrams: show both actor name and public action for each component.

2. Explicit Orchestration Layer

Every multi-step solution has a named orchestration layer (see §2.2):

  • Orchestrators are visible in architecture diagrams — not implicit main() functions
  • Canonical naming: orchestrate_[stage]() in [stage]_orchestrator.py
  • Orchestrators compose other orchestrators; the hierarchy is explicit

In High-Level Design deliverables: the orchestration chain must be diagrammed.

3. Mandatory Constants / Enum Configuration Layer

All domain vocabulary is a first-class architectural component (see §2.3):

  • A constants/enums layer appears in every architecture
  • Processing components depend on the constants layer; the constants layer depends on nothing
  • Domain vocabulary changes only touch the constants layer

4. Explicit Type Contracts on All Component Interfaces

All component interfaces are fully typed (see §2.4):

  • Every public API specifies parameter types and return types in the architecture spec
  • Named parameters enforced with * at all architectural boundaries
  • No implicit duck-typing contracts between components

5. Fail-Fast Validation Gates at Ingress Boundaries

Validation is an architectural concern, not an implementation detail (see §2.5):

  • Ingress validation components are named and diagrammed
  • Each layer defines its own exception types — no generic exception propagation
  • Error flow paths are included in architecture diagrams

6. Platform Library Inventory Check

Before designing any custom component, check the active variant's platform library (see §2.6):

  • For BORO: check nf_common catalogue
  • For Ontoledgy: check bclearer_pdk, ai, ui catalogues
  • A custom component requires a rationale if the platform already covers the need

In the Technology Mapping deliverable: add a "Platform Coverage" column showing which platform library provides each cross-cutting function.

7. Minimal Surface Area

No speculative components (see §2.7):

  • Every component in the design has a current use case
  • Scope is explicitly bounded before design begins
  • Open questions section captures any scope negotiation needed

8. Decomposition Hierarchy

Design at multiple levels (see §2.8):

  • L1: orchestrators (entry points)
  • L2: workers (domain actors)
  • L3: helpers (internal, not in top-level diagram)
  • Top-level diagram shows L1 and L2 only

OB Review Mode Additions

When operating in Review Mode (inherited from software-architect), add these checks:

OB PrincipleExpectedSignal if missing
Actor-action namingAll modules have actor names + action functionsGeneric names: utils.py, helpers.py, manager.py
Orchestration layerNamed orchestrator(s) presentBusiness logic in __main__, scattered main() functions
Constants layerSeparate constants/enums file(s)Hardcoded strings in processing logic
Typed contractsAll public APIs typedUntyped function signatures at module boundaries
Fail-fast gatesValidation at ingress boundariesValidation scattered through processing logic
Platform library useActive variant's libraries used for file/folder/utility opsos.path, pathlib used where nf_common.Files applies (BORO variant)
YAGNINo speculative abstractionsAbstract base classes with only one implementation

Severity classification for OB violations:

  • CRITICAL: Missing orchestration layer (business logic untraceable); no constants layer (vocabulary scattered)
  • MAJOR: Untyped public interfaces; missing fail-fast gates; wrong platform library used
  • MINOR: Naming inconsistencies; unnecessary abstractions

Output Format Additions

In addition to the software-architect deliverables, every OB architecture output includes:

High-Level Solution Design additions:

  • OB Variant: BORO or Ontoledgy (confirmed from ob-library-selection.md)
  • Orchestration Chain: L1 → L2 hierarchy diagrammed
  • Constants Layer: named and positioned in the architecture
  • Platform Mapping: which platform library covers each cross-cutting concern

Feature Design additions:

  • OB Checklist: actor-action naming, orchestration, constants, contracts, fail-fast — confirmed for this feature
  • Platform Library Check: confirm no custom code needed for platform-covered functions

Review Mode additions (in gap analysis):

  • OB principles column in the review checklist
  • Severity includes OB-specific critical violations listed above

Feedback

If the user corrects this skill's output due to a misinterpretation or missing rule in the skill itself (not a one-off preference), invoke skill-feedback to capture structured feedback and optionally post a GitHub issue.

If skill-feedback is not installed, ask the user: *"This looks like a skill defect. Would you like to install the skill-feedback skill to report it?"* If the user declines, continue without feedback capture.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.49%
按下载量换算41

Claude

28.82%
按下载量换算34

Cursor

18.69%
按下载量换算22

Gemini CLI

8.97%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills