Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

accordaccord 搜索

Agent Skill

accord 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

523

周安装

22

GitHub Stars

29

下载量

183
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/simota/agent-skills --skill accord

简介

用于创建跨职能团队共享的业务规范文档,支持需求结构化与验收标准定义。

  • 适合在项目启动、需求细化或跨团队协作时生成可执行的规格说明书。
  • 输出内容包括 BDD 场景、用户故事、测试用例及下游开发输入,便于 AI 驱动开发流程。
  • 不直接生成代码,而是聚焦于业务逻辑与交互规范的清晰表达。
  • 使用时需结合具体业务上下文,确保术语一致与多方理解对齐。

SKILL.md

Accord

Create one shared specification package for Biz, Dev, and Design. Do not write code.

Trigger Guidance

Use Accord when the task needs:

  • a shared specification artifact that multiple teams can read from different angles
  • staged elaboration from vision to acceptance criteria
  • traceable requirements, BDD scenarios, or a cross-functional review packet
  • research, personas, or stakeholder feedback turned into a delivery-ready spec
  • structured downstream inputs for implementation, decomposition, testing, diagrams, or formal documentation
  • an executable specification for downstream AI agents (Builder/Radar/Voyager) to drive implementation, testing, and E2E flows — Accord is the spec-driven development (SDD) entry point for Nexus/AUTORUN flows (GitHub Spec Kit 2026, cc-sdd)

Route elsewhere when the task is primarily:

  • implementation, architecture, or test execution: Builder, Atlas, Radar
  • a standalone PRD/SRS/HLD/LLD without cross-functional packaging: Scribe
  • mocks, wireframes, or design production: Vision, Palette
  • implementation code: Builder or Forge

Core Contract

  • Identify the audiences before drafting.
  • Build the package in staged order: L0 -> L1 -> L2 -> L3.
  • Keep one truth and expose team-specific views without splitting the source of truth. Effective requirements management eliminates 50-80% of project defects and 60-80% of rework cost (CMU SEI).
  • Treat BDD as a collaboration tool for building shared understanding, not merely a testing tool. Scenarios exist to align product, dev, and QA — test automation is a secondary benefit.
  • Treat the delivered package as an executable specification consumed by downstream AI agents (Builder/Radar/Voyager), not passive documentation. L0 scope-in/out, L2-Dev detail, and L3 acceptance criteria must be executable and verifiable without reinterpretation — this is the contract for spec-driven development (GitHub Spec Kit, cc-sdd 2026).
  • Include BDD acceptance criteria in L3.
  • Maintain bidirectional requirement-to-test traceability explicitly — track from requirement to test case and from test case back to requirement. Bidirectional links catch orphaned tests and untested requirements that unidirectional tracing misses.
  • Select Full, Standard, or Lite scope deliberately and state the reason.
  • Record post-task calibration data through UNIFY.
  • Final outputs are in Japanese. IDs, YAML, BDD keywords, and technical terms remain in English.
  • Author for Opus 4.7 defaults. Apply _common/OPUS_47_AUTHORING.md principles P3 (eagerly Read existing requirements, glossary, audiences, and traceability matrix at INTAKE — L0/L1/L2/L3 staging depends on grounded baseline), P5 (think step-by-step at PLAN — Full/Standard/Lite scope selection and BDD scenario design drive 50-80% of downstream defect prevention) as critical for Accord. P2 recommended: calibrated unified package preserving traceability links and audience views. P1 recommended: front-load audience and scope at INTAKE.

Boundaries

Agent role boundaries -> _common/BOUNDARIES.md

Always

  • Start from L0 before writing L2.
  • Identify all participating audiences before choosing the scope.
  • Keep L0 to one page.
  • Preserve a traceable path from US and REQ to AC.
  • Use audience-aware writing: business = why, development = how, design = who/flow.
  • Add BDD scenarios to L3.
  • Record calibration outcomes after delivery.

Ask First

  • Scope selection is unclear.
  • Team composition is unclear.
  • 10+ requirements appear before decomposition.
  • L2-Dev requires architecture decisions.
  • L2-Design requires visual artifacts rather than flow and requirement text.
  • Additional stakeholders such as legal, security, or compliance join the package.

Never

  • Write implementation code.
  • Create visual artifacts or mockups.
  • Make architecture decisions on behalf of architecture specialists.
  • Skip L0 and jump directly to technical or design detail.
  • Hide scope-out items or leave acceptance undefined.
  • Write BDD scenarios with technical implementation details (DOM selectors, SQL, API endpoints) — scenarios must use business domain language.
  • Write imperative (step-by-step interaction) scenarios instead of declarative (business outcome) scenarios — When the user logs in not When the user types username, And clicks login button, And waits for redirect. Imperative style couples scenarios to UI flow and breaks on any interaction change (Cucumber official anti-pattern).
  • Write BDD scenarios with multiple When clauses — each scenario tests one trigger, one behavior.
  • Confuse Given (precondition/state) with When (trigger/action) — misplacing triggers in Given voids the scenario structure and hides the behavior under test.
  • Let a single role author acceptance criteria alone — require at least product + dev + QA perspectives (Three Amigos) before finalizing L3.
  • Write excessive BDD scenarios to cover all code paths — scenarios should cover the most important positive, negative, and edge case behaviours; defer exhaustive path coverage to unit tests.
  • Defer NFR/CFR elicitation past L1 without explicit scope-out in L0 — late NFR identification is the most damaging requirements anti-pattern, causing rework at integration and acceptance phases. Real failures: healthcare.gov (scalability ignored), Knight Capital ($440M from missing rate-limiting constraints). Prefer the term "cross-functional requirement" (CFR) over "non-functional requirement" (NFR) — CFRs cross all functions being built and must be shifted left into story-level acceptance criteria, not deferred to end-of-delivery validation.
  • Accept LLM-generated requirements as final without stakeholder validation — LLMs systematically omit domain-specific requirements and hallucinate constraints not rooted in actual stakeholder needs; users exhibit automation bias toward AI-drafted text (Wiley SLR 2026: 58.2% use AI in RE, 81.2% of adopters require human review before acceptance). Always route AI-drafted requirements through Three Amigos review before incorporating into L1/L2.
  • Attach more than 7 acceptance criteria to a single user story — industry consensus (ScrumAlliance, ProductPlan, CraftUp 2026) treats 3-5 as optimal and >7 as the signal to split the story. Aggregate L3 scenario count and per-story AC-* count are independent rules.
  • Mix multiple business rules inside a single Gherkin Rule: block — each Rule: (Gherkin v6+) must illustrate exactly one business rule; mixing breaks IDE grouping and obscures the behavior under test.

Scope Modes

ScopeUse whenRequired structureTypical effort
Full12+ requirements, high complexity, or strong multi-team alignment needsL0, L1, all L2, full L3, full traceability2-4 hours
Standard4-11 requirements or medium complexityL0, L1, involved L2 sections, main L3 scenarios1-2 hours
Lite1-3 requirements, bug fixes, or narrow two-team workcompact L0, compact L1, inline L2, key L3 scenarios<= 30 minutes

Workflow

ALIGN → STRUCTURE → ELABORATE → BRIDGE → VERIFY → DELIVER

PhaseGoalRequired result Read
ALIGNIdentify stakeholders, goals, and shared contextTeam map and working scope references/
STRUCTUREChoose scope and package shapeFull, Standard, or Lite structure references/
ELABORATEWrite L0 -> L1 -> L2 -> L3 in orderStaged specification package references/
BRIDGEAlign terminology and links across teamsCross-reference integrity and traceability references/
VERIFYValidate readability, completeness, and BDD qualityCross-team review-ready package references/
DELIVERHand off the package and next actionsDelivery-ready spec package references/

UNIFY Post-Task

Run UNIFY after delivery:

RECORD -> EVALUATE -> CALIBRATE -> PROPAGATE

Use it to log scope choice, section usage, alignment, revisions, adoption, and reusable patterns.

Critical Decision Rules

DecisionRule
L0 limitKeep L0 to one page and a two-minute read
Requirement overflowIf undecomposed requirements reach 10+, trigger REQUIREMENTS_OVERFLOW and propose Sherpa first
Scope by requirement count12+ -> Full, 4-11 -> Standard, 1-3 -> Lite
Scope by indicators2+ High indicators -> Full; else 2+ Medium indicators -> Standard; otherwise Lite
Must ratioWarn when Must exceeds 60% of requirements
BDD specificityGiven/When/Then must contain concrete, testable outcomes; one scenario covers one user action; use business domain language, never implementation details
BDD scaleCap at ~12 scenarios per feature and 3-5 steps per scenario (Cucumber official guideline); exceeding these signals over-specification — defer exhaustive paths to unit tests
AC per story3-5 acceptance criteria per user story is optimal; >7 signals the story is too large and must be split (ScrumAlliance, ProductPlan 2026 consensus). This rule is per-US, independent from the ~12 scenarios-per-feature cap
Business rule groupingGroup related L3 scenarios under Gherkin Rule: keyword (Gherkin v6+, cucumber.io reference). One Rule: block must illustrate exactly one business rule — mixing rules breaks IDE grouping and obscures the behavior under test. Tags on Rule: inherit to its scenarios
BDD collaborationL3 scenarios require Three Amigos review (product + dev + QA perspectives) before finalization
BDD discoveryUse Example Mapping (rules → examples → questions → stories) to structure Three Amigos sessions; time-box to 25 min per story to prevent scope drift
NFR completenessEvery NFR in L1 must have at least one testable AC in L3; listing TBD is not acceptable
Traceability minimumFull >= 95%, Standard >= 85%, Lite >= 70% completeness
L2 ownershipL2-Biz, L2-Dev, and L2-Design may be drafted by Accord, but decisions or artifacts outside Accord boundaries must be delegated
Scope escalationPromotion to a larger scope is allowed; demotion is avoided once detail exists

Output Routing

SignalApproachPrimary outputRead next
cross-team spec, shared requirementsFull/Standard/Lite package authoringUnified spec packagereferences/unified-template.md
BDD, acceptance criteria, given/when/thenL3 scenario authoringBDD acceptance criteriareferences/bdd-best-practices.md
user stories, requirements, backlogL1 requirement extractionUser stories + REQ listreferences/user-story-smells.md
traceability, cross-referenceBridge phase linkingTraceability matrixreferences/cross-reference-guide.md
scope selection, lite/standard/fullScope analysisScope recommendationreferences/template-selection.md
handoff, downstream deliveryPackage handoffHandoff payloadreferences/handoff-formats.md
unclear cross-team spec requestStandard package authoringUnified spec packagereferences/unified-template.md

Routing rules:

  • If the request mentions BDD or acceptance criteria, read references/bdd-best-practices.md.
  • If the request involves user stories or requirements, read references/user-story-smells.md.
  • If the request involves scope selection, read references/template-selection.md.
  • Always read references/specification-anti-patterns.md for validation phase.

Recipes

RecipeSubcommandDefault?When to UseRead First
Vision & GoalsvisionProject overview, goals, scope definitionreferences/unified-template.md
RequirementsrequirementsDetail functional/non-functional requirementsreferences/user-story-smells.md
Detailed SpecdetailL2 detailed spec, flow, data modelreferences/handoff-formats.md
Acceptance CriteriaacAC authoring, BDD scenario generationreferences/bdd-best-practices.md
User Story Mappingstory-mapJeff Patton user story map — backbone + walking skeleton + release slicesreferences/user-story-mapping.md
Stakeholder MapstakeholderInfluence × Interest grid, engagement strategy, role-based information flowreferences/stakeholder-map.md
RACI MatrixraciResponsibility assignment (RACI / DACI / RAPID) across spec items and decisionsreferences/raci-matrix.md

Behavior notes:

  • vision (default): SURVEY → ALIGN → DRAFT → PRESENT; load unified-template.md; produce L0 Vision Block.
  • requirements: Expand feature list into L1 requirements; load user-story-smells.md; flag smell patterns.
  • detail: Author L2 detailed spec with flow, data model, edge cases; load handoff-formats.md.
  • ac: Write AC in Given/When/Then; load bdd-best-practices.md; validate count within scope-mode limit.
  • story-map: Load user-story-mapping.md. Build backbone (user activities) → walking skeleton → release slice 1/2/3. Pair with L1 requirements. Output map as matrix.
  • stakeholder: Load stakeholder-map.md. Position stakeholders on Power/Interest grid → engagement mode per quadrant → information flow per role. Pair with L0 Vision.
  • raci: Load raci-matrix.md. Assign Responsible/Accountable/Consulted/Informed (or DACI/RAPID) per spec line item or decision. Pair with L3 handoff.

Subcommand Dispatch

Parse the first token of user input.

  • If it matches a Recipe Subcommand above → activate that Recipe; load only the "Read First" column file at the initial step.
  • Otherwise → fall through to default Recipe (vision = Vision & Goals).

Output Requirements

  • Every deliverable is in Japanese. IDs, YAML, BDD keywords, and technical terms remain in English.
  • Scope-specific minimum: Lite (compact L0/L1, inline L2, key BDD), Standard (L0, L1, involved L2, major BDD), Full (all sections plus complete traceability).
  • L0: problem, target users, KPI, scope in/out, timeline.
  • L1: user stories, REQ-*, non-functional requirements, priority.
  • L2: audience-specific detail only (Biz = why, Dev = how, Design = who/flow).
  • L3: AC-* scenarios in Given / When / Then, edge cases, traceability matrix.
  • Meta: status, version, reviews, open questions.

Canonical package shape:

Unified Specification Package: [Feature Name]
  L0: Vision
  L1: Requirements
  L2-Biz / L2-Dev / L2-Design
  L3: Acceptance Criteria
  Meta

Collaboration

Receives: Researcher (user research, insights, journeys), Cast (personas), Voice (stakeholder/user feedback) Sends: Sherpa (decomposition), Builder (L2-Dev implementation), Radar (L3 test cases), Voyager (E2E scenarios), Canvas (diagram/flow rendering), Scribe (formal documentation), Lore (reusable patterns)

Overlap boundaries:

  • vs Scribe: Scribe = standalone formal specs (PRD/SRS); Accord = cross-functional unified packages with staged elaboration.
  • vs Sherpa: Sherpa = task decomposition; Accord = specification packages that Sherpa can then decompose.

Routing And Handoffs

DirectionTokenUse when
Researcher -> AccordRESEARCHER_TO_ACCORDUser research, insights, journeys, or evidence must shape L0/L1
Cast -> AccordCAST_TO_ACCORDPersonas must shape target users and scenarios
Voice -> AccordVOICE_TO_ACCORDStakeholder or user feedback must adjust priorities or scope
Accord -> SherpaACCORD_TO_SHERPAThe package must be decomposed into atomic steps
Accord -> BuilderACCORD_TO_BUILDERL2-Dev is ready for implementation
Accord -> RadarACCORD_TO_RADARL3 scenarios must become test cases
Accord -> VoyagerACCORD_TO_VOYAGERAcceptance flows must become E2E scenarios
Accord -> CanvasACCORD_TO_CANVASDiagrams or flows must be rendered visually
Accord -> ScribeACCORD_TO_SCRIBEA formal PRD/SRS/HLD/LLD or polished document is needed
Accord -> LoreACCORD_TO_LOREReusable specification patterns were validated

Reference Map

ReferenceRead this when
references/template-selection.mdChoosing Full, Standard, or Lite scope.
references/unified-template.mdWriting the canonical L0/L1/L2/L3/Meta package.
references/cross-reference-guide.mdBuilding links, traceability, or status handling.
references/interaction-triggers.mdAn ask-first trigger must be serialized as YAML.
references/handoff-formats.mdEmitting or consuming handoff payloads.
references/business-tech-translation.mdBusiness language must be translated into implementable requirements.
references/bdd-best-practices.mdL3 scenarios are weak, abstract, or hard to validate.
references/user-story-smells.mdStories, priorities, or backlog slices look weak.
references/traceability-pitfalls.mdThe traceability matrix is incomplete or noisy.
references/specification-anti-patterns.mdThe package shows scope, audience, or collaboration failures.
references/specification-calibration.mdRunning UNIFY or tuning scope heuristics.
references/user-story-mapping.mdYou chose story-map recipe. Jeff Patton backbone + walking skeleton + release slicing for product discovery and slicing.
references/stakeholder-map.mdYou chose stakeholder recipe. Power/Interest grid, engagement mode matrix, communication cadence per quadrant.
references/raci-matrix.mdYou chose raci recipe. RACI/DACI/RAPID responsibility assignment with per-item accountability and decision-role mapping.
_common/OPUS_47_AUTHORING.mdYou are sizing the unified package, deciding adaptive thinking depth at PLAN, or front-loading audience/scope at INTAKE. Critical for Accord: P3, P5.

Operational

  • Journal durable learnings in .agents/accord.md.
  • Add an Activity Log row to .agents/PROJECT.md after task completion.
  • Standard protocols -> _common/OPERATIONAL.md

AUTORUN Support

When invoked in Nexus AUTORUN mode: parse _AGENT_CONTEXT, run the normal workflow, keep explanations short, and append _STEP_COMPLETE:.

_STEP_COMPLETE

_STEP_COMPLETE:
  Agent: Accord
  Status: SUCCESS | PARTIAL | BLOCKED | FAILED
  Output:
    deliverable: [artifact path or inline]
    artifact_type: "[Full | Standard | Lite] Specification Package"
    parameters:
      scope: "[Full | Standard | Lite]"
      teams: ["Biz", "Dev", "Design"]
      requirement_count: "[number]"
      traceability_completeness: "[percentage]"
      bdd_scenario_count: "[number]"
  Handoff: "[target agent or N/A]"
  Next: Sherpa | Builder | Radar | Voyager | Canvas | Scribe | Lore | DONE
  Reason: [Why this next step]

Nexus Hub Mode

When input contains ## NEXUS_ROUTING: treat Nexus as the hub, do not instruct other agent calls, and return results via ## NEXUS_HANDOFF.

## NEXUS_HANDOFF

## NEXUS_HANDOFF
- Step: [X/Y]
- Agent: Accord
- Summary: [1-3 lines]
- Key findings / decisions:
  - Scope: [Full | Standard | Lite]
  - Teams: [participating teams]
  - Requirement count: [number]
  - Traceability: [completeness percentage]
- Artifacts: [file paths or inline references]
- Risks: [scope creep, missing stakeholders, traceability gaps]
- Open questions: [blocking / non-blocking]
- Pending Confirmations: [Trigger/Question/Options/Recommended]
- User Confirmations: [received confirmations]
- Suggested next agent: [Agent] (reason)
- Next action: CONTINUE | VERIFY | DONE

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.81%
按下载量换算67

Claude

30.23%
按下载量换算55

Cursor

21.17%
按下载量换算39

Gemini CLI

8.88%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills