Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

init-architect初始架构师

Agent Skill

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

总安装

460

周安装

12

GitHub Stars

1

下载量

97
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vishal2457/open-orchestra --skill init-architect

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息,适合整理代码变更状态。

  • 可围绕仓库维护和协作事项进行信息梳理,支持代码审查相关任务。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 安装命令为 npx skills add https://github.com/vishal2457/open-orchestra --skill init-architect。
  • 适用于 Codex、Claude、Cursor、Gemini CLI,需通过 GitHub 仓库安装。

SKILL.md

Init Architect

Purpose

Run once after installing skills (and rerun when architecture drifts) to create or refresh architecture-folder artifacts used by architect-agent. Also supports scoped updates when invoked from pr-review-agent for architecture-impacting PR changes.

Runtime Configuration

  • Read /orchestra-config.json from the repository root before starting.
  • If /orchestra-config.json is missing, create it at repository root with:
  • {"issue_tracker": "linear"}
  • Read issue_tracker and use it for any generated tracker-facing instructions.
  • Allowed issue_tracker values: linear, jira.
  • For tracker comments in workflow-scoped mode, include: Skill-Version: init-architect@2.0.0.

When to Invoke

  • Immediately after skill installation, before running architect-agent.
  • When architecture artifacts are stale after major system changes.
  • When pr-review-agent flags architecture-impacting changes and provides scoped PR context.

Required Inputs

  • Repository root path.
  • Invocation mode:
  • full (default): repository analysis and full architecture refresh.
  • scoped: targeted update using PR-derived scope.
  • For scoped mode:
  • parent issue ID.
  • PR identifier/link.
  • changed files list.
  • concise diff summary.
  • matched architecture-impact cases.
  • suggested architecture sections.
  • Optional existing /architecture/architecture.md.
  • Optional existing /architecture/docs/*.md.
  • Optional existing skills/init-architect/ARCHITECTURE.md template.
  • Most recent prior handoff comment in <!-- OPEN-ORCHESTRA-HANDOFF --> format when running in workflow-scoped mode.

Outputs

  • /orchestra-config.json in repository root (created only if missing).
  • /architecture/architecture.md populated as the architecture index.
  • /architecture/docs/*.md populated for complex domains.
  • In scoped mode: only impacted sections/documents are updated; unaffected sections remain unchanged.
  • Optional targeted updates to skills/architect-agent/SKILL.md reference tables so runtime guidance matches generated docs.
  • For workflow-scoped mode, a handoff comment wrapped exactly as:
{
  "execution_trace": "Execution-Trace:\nActions:\n1. <action>\n2. <action>\nDecisions:\n- <architecture update decision + reason>\nReferences:\n- <changed files or architecture docs>\nAssumptions:\n- <assumption>\nOpen-Questions: none|<question list>\nSkill-Version: init-architect@2.0.0",
  "handoff_summary": {
    "from_skill": "init-architect",
    "to_skill": "architect-agent|pr-review-agent",
    "status": "ready|blocked|completed",
    "delta": ["<what changed in architecture artifacts>"],
    "key_decisions": [{"decision": "<decision>", "reason": "<reason>"}],
    "relevant_artifacts": [
      {
        "artifact": "architecture-index-or-doc",
        "hash": "sha256:<hash>",
        "last_modified": "<ISO-8601>",
        "summary": "<updated sections and rationale>"
      }
    ],
    "open_blockers": [{"blocker": "<text>", "owner": "<owner>", "next_action": "<action>"}],
    "next_guidance": {
      "need_full": ["architecture/architecture.md"],
      "focus": ["<sections downstream agents must re-check>"]
    }
  }
}
  • handoff_summary must be <= 600 tokens.

Context Gathering Order (Strict)

  1. Locate the most recent comment containing <!-- OPEN-ORCHESTRA-HANDOFF --> from the previous skill.
  2. Parse the JSON inside it. This is your primary context.
  3. Look at its relevant_artifacts list and hashes.
  4. Declare exactly which artifacts you need via need_full.
  5. Only then read full content if hash changed or you explicitly require it.
  6. In non-workflow bootstrap mode with no prior handoff, continue with repository artifacts only.

Procedure

  1. Ensure /orchestra-config.json exists and has key issue_tracker.
  2. Execute the strict context gathering order above when in workflow-scoped mode.
  3. Ensure scaffold exists:
  • skills/init-architect/ARCHITECTURE.md.
  1. Ensure generated artifact paths exist:
  • /architecture/architecture.md.
  • /architecture/docs/.
  1. If architecture content currently lives under /ARCHITECTURE.md or /docs/, migrate relevant content into /architecture/ and stop updating legacy root-level copies.
  2. Determine mode:
  • If scoped payload is present, run scoped mode.
  • Otherwise run full mode.
  1. In full mode, analyze repository structure (do not read every source file):
  • stack, entry points, boundaries, data layer, integrations, auth, sensitive areas, conventions.
  1. In full mode, write/update /architecture/architecture.md as a concise index:
  • system overview.
  • component map.
  • sensitive areas.
  • conventions.
  • reference docs table.
  1. In full mode, create/update /architecture/docs/*.md only for domains that need detail beyond the index.
  2. In scoped mode, use provided PR scope first and update only impacted architecture artifacts:
  • map changed files and matched cases to existing sections in /architecture/architecture.md.
  • update only relevant sections in /architecture/architecture.md.
  • update or create only the necessary /architecture/docs/*.md files tied to those sections.
  • keep unrelated sections/documents untouched.
  1. In scoped mode, preserve current architecture structure and terminology unless the PR clearly introduces a new boundary or domain.
  2. Keep index shallow; move depth to domain docs.
  3. If generated docs change domain/sensitive-area mapping, update relevant sections in skills/architect-agent/SKILL.md.
  4. In workflow-scoped mode, post handoff JSON with status: completed or status: blocked.

Guardrails

  • This skill owns architecture artifact generation; architect-agent must not regenerate architecture docs.
  • Do not overwrite skills/init-architect/ARCHITECTURE.md template files.
  • Keep generated architecture artifacts under /architecture/ (/architecture/architecture.md, /architecture/docs/*.md).
  • Prefer clarity over coverage; do not scan the full codebase unnecessarily.
  • In scoped mode, do not perform a full repository rescan unless scoped context is insufficient.
  • In scoped mode, prioritize consistency with existing architecture docs and produce minimal diffs.

Handoff

Primary consumers: architect-agent, pr-review-agent (scoped invocation).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.63%
按下载量换算34

Claude

27.77%
按下载量换算27

Cursor

17.9%
按下载量换算17

Gemini CLI

9.81%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills