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

doc-flow文档流

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

1,234

周安装

53

GitHub Stars

14

下载量

432
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vladm3105/aidoc-flow-framework --skill doc-flow

简介

用于编排AI驱动规范开发(SDD)的全流程技能协同。

  • 适合指导选择正确的artifact-specific技能并理解15层架构关系。
  • 提供技能集成指南和权威性工作流程概述,避免误用。
  • 必须通过它选择下游技能,不可直接调用具体文档生成工具。
  • doc-flow 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

doc-flow (Orchestrator)

Purpose

This skill serves as the orchestrator for the AI-Driven Specification-Driven Development (SDD) workflow. It provides:

  1. Skill Selection Guidance: Helps determine which artifact-specific skill to use
  2. Workflow Overview: Complete 15-layer SDD architecture
  3. General SDD Principles: Specification-driven methodology fundamentals
  4. Integration Guidance: How skills work together

For Artifact Creation: Use the specific artifact skill (doc-brd, doc-prd, doc-ears, doc-bdd, doc-adr, doc-sys, doc-req, doc-impl, doc-ctr, doc-spec, doc-tasks, doc-ref, doc-naming).

Authoritative Reference: ai_dev_flow/SPEC_DRIVEN_DEVELOPMENT_GUIDE.md


Prerequisites

⚠️ For New Projects (Greenfield): If starting a brand new project with no existing folder structure, use the project-init skill FIRST to initialize project structure, select domain, create folders, and configure setup. Then return here to begin workflow execution.

For Existing Projects: If project is already initialized (docs/ folders exist, domain configured), proceed directly with this skill.


Skill Selection Decision Tree

"Which Skill Do I Need?"

Answer these questions to find the right skill:

Q1: What stage are you at in the workflow?

  • Starting new project with business requirements → Use doc-brd skill
  • Have BRD, need product requirements → Use doc-prd skill
  • Have PRD, need formal requirements → Use doc-ears skill
  • Have EARS, need test scenarios → Use doc-bdd skill
  • Have BDD, need architecture decisions → Use doc-adr skill
  • Have ADR, need system requirements → Use doc-sys skill
  • Have SYS, need atomic requirements → Use doc-req skill
  • Have REQ, need implementation planning → Use doc-impl skill (if complex) or skip to doc-spec
  • Have REQ/IMPL, need API contracts → Use doc-ctr skill (if interface requirement)
  • Have REQ/CTR, need technical specifications → Use doc-spec skill
  • Have SPEC, need task breakdown → Use doc-tasks skill
  • Have TASKS, need implementation contracts → Add Section 8 to TASKS (see doc-tasks skill)
  • Have TASKS, ready to code → Implement code per TASKS
  • Need supplementary documentation (overview, glossary, guides) → Use doc-ref skill

Q2: What are you trying to do?

  • Define business needs and objectivesdoc-brd
  • Define product features and KPIsdoc-prd
  • Write formal WHEN-THE-SHALL-WITHIN requirementsdoc-ears
  • Create Gherkin test scenariosdoc-bdd
  • Document architecture decisionsdoc-adr
  • Define system requirementsdoc-sys
  • Define atomic requirementsdoc-req
  • Plan project implementation (WHO/WHEN/WHAT)doc-impl
  • Define API contractsdoc-ctr
  • Write technical specificationsdoc-spec
  • Break down into AI tasksdoc-tasks
  • Define implementation contracts for parallel dev → Add Section 8 to TASKS (see doc-tasks skill)
  • Create supplementary documentation (project overview, glossary, guides)doc-ref
  • General guidance or unsure → Stay with doc-flow (this skill)

Complete SDD Workflow (15 Layers)

Authoritative Reference: ai_dev_flow/SPEC_DRIVEN_DEVELOPMENT_GUIDE.md

Workflow Sequence

Strategy (Layer 0)
  ↓
BRD (Layer 1) → doc-brd skill
  ↓
PRD (Layer 2) → doc-prd skill
  ↓
EARS (Layer 3) → doc-ears skill
  ↓
BDD (Layer 4) → doc-bdd skill
  ↓
ADR (Layer 5) → doc-adr skill
  ↓
SYS (Layer 6) → doc-sys skill
  ↓
REQ (Layer 7) → doc-req skill
  ↓
IMPL (Layer 8) [OPTIONAL] → doc-impl skill
  ↓
CTR (Layer 9) [OPTIONAL - IF INTERFACE] → doc-ctr skill
  ↓
SPEC (Layer 10) → doc-spec skill
  ↓
TASKS (Layer 11) → doc-tasks skill
  ↓
Code (Layer 12)
  ↓
Tests (Layer 13)
  ↓
Validation (Layer 14)

Layer Descriptions

LayerArtifactPurposeSkill
0StrategyBusiness owner documentsExternal (strategy/)
1BRDBusiness requirementsdoc-brd
2PRDProduct requirementsdoc-prd
3EARSFormal requirements (WHEN-THE-SHALL)doc-ears
4BDDGherkin test scenariosdoc-bdd
5ADRArchitecture decisionsdoc-adr
6SYSSystem requirementsdoc-sys
7REQAtomic requirementsdoc-req
8IMPLImplementation plans (WHO/WHEN) [OPTIONAL]doc-impl
9CTRAPI contracts [OPTIONAL - IF INTERFACE]doc-ctr
10SPECTechnical specifications (HOW)doc-spec
11TASKSTask breakdown for implementationdoc-tasks
11+ICONImplementation Contracts (Section 8 of TASKS)doc-tasks
12CodePython implementationImplementation
13TestsTest suitesImplementation
14ValidationBDD + contract + traceabilityValidation

Optional Layers Decision Logic

When to Create IMPL (Layer 8):

  • Create IMPL When: Duration ≥2 weeks, teams ≥3, components ≥5, critical budget/timeline, external dependencies
  • Skip IMPL When: Single component, duration <2 weeks, single developer, low risk
  • Reference: ai_dev_flow/WHEN_TO_CREATE_IMPL.md

When to Create CTR (Layer 9):


General SDD Principles

1. Specification-Driven Development Philosophy

Core Principle: Formalize before implementing

  • Traditional Approach: Code first, document later (or never)
  • SDD Approach: Document first, generate code from specifications

Why SDD Works:

  • Clarity: Requirements are explicit before coding begins
  • Traceability: Every line of code traces to business requirements
  • Validation: Tests defined before implementation
  • Consistency: Templates ensure uniform structure
  • Speed: Code generation from YAML specifications (48x faster)

2. Information Flow Hierarchy

Changes flow DOWN (never UP):

strategy/ (WHAT - Product Owner Voice)
    ├── Strategy business logic
    └── Performance targets
              ↓
              ↓ Referenced by
              ↓
📚 docs/ (WHY + HOW - Project Documentation)
    ├── Requirements (WHY)
    ├── Architecture (HOW)
    └── Specifications (IMPLEMENTATION)
              ↓
              ↓ Generates
              ↓
💻 Source Code (Python/Infrastructure)

📝 ai_dev_flow/ feeds into 📚 docs/ for consistency

Golden Rules:

  • Strategy → Documentation → Code (one-way flow)
  • Code cannot change strategy
  • Always use templates from ai_dev_flow/ when creating docs in docs/
  • All business logic must reference strategy/ sections

3. Directory Structure and Roles

Critical Context: This project has three key directories with distinct roles:

strategy/ - WHAT (Product Owner Voice)

Primary Authority: Authoritative business strategy and domain logic

  • core_algorithm.md - Primary algorithm specifications
  • strategy_overview.md - Strategic framework and operating modes
  • risk_management.md - Risk management policies
  • business_rules.md - Domain-specific business rules
  • selection_criteria/ - Entry criteria and scoring algorithms
  • Performance targets, state machines, resource budgets

Golden Rule: All business logic must trace back to these strategy documents.

📚 docs/ - PROJECT DOCUMENTATION

Implementation Documentation: Requirements, architecture, specifications

  • docs/BRD/ - Business Requirements Documents

- Nested folder structure: docs/BRD/BRD-NN/BRD-NN.S_slug.md

  • docs/PRD/ - Product Requirements Documents

- Nested folder structure: docs/PRD/PRD-NN/PRD-NN.S_slug.md

  • docs/ADR/ - Architecture Decision Records (HOW)

- Nested folder structure: docs/ADR/ADR-NN/ADR-NN.S_slug.md

  • docs/BDD/ - BDD acceptance tests (Behavior-Driven Development)
  • docs/CTR/ - API Contracts (dual-file format:.md +.yaml)
  • docs/IMPL/ - Implementation Plans (Project Management: WHO/WHEN)
  • docs/SPEC/ - YAML technical specifications
  • docs/TASKS/ - Code Generation Plans (AI-structured implementation tasks)

Note: BRD, PRD, ADR use section-based nested folders by default. Other types use flat structure.

Purpose: Document how strategy is implemented through architecture and code.

📝 ai_dev_flow/ - AUTHORITATIVE DEVELOPMENT STANDARD

Development Standard and Templates: The single source of truth for SDD workflow

  • Status: Authoritative development standard for this project
  • Contents: Complete SDD workflow (BRD → PRD → EARS → BDD → ADR → SYS → REQ → IMPL → CTR → SPEC → TASKS → Code)
  • Templates: {TYPE}-TEMPLATE.{ext} for each artifact type (BRD, PRD, EARS, BDD, ADR, SYS, REQ, IMPL, CTR, SPEC, TASKS, REF)
  • Indices: {TYPE}-00_index.{ext} listing all documents of each type
  • READMEs: Detailed usage guides and best practices for each artifact type
  • Standards: ID naming, traceability format, cross-referencing rules
  • Examples: Reference implementations with full traceability chains

Purpose: Define the complete development methodology with templates, standards, and examples for creating all artifacts.

⚠️ CRITICAL: Archived Documents Restriction

STRICTLY PROHIBITED: DO NOT access, reference, link to, or use ANY files or directories containing the word "archived" in their path.

Automatic Filtering Rules:

  • ❌ Skip any path containing archived, Archived, ARCHIVED, or archive
  • ❌ Ignore files in directories with "archived" in the name
  • ❌ Do not read, suggest, or reference archived content
  • ❌ Do not use archived documents even if they appear in search results

Active Documentation Only:

  • strategy/ (current strategy - excludes archived subdirs)
  • docs/ (active project documentation)
  • ai_dev_flow/ (authoritative templates and standards)

If archived content is needed:

  • Stop immediately
  • Inform user that content is in archived location
  • Request explicit permission before proceeding

4. Traceability Importance

Complete Audit Trail: Every artifact must trace back to original business requirements

Benefits:

  • Impact Analysis: Know what breaks when requirements change
  • Regulatory Compliance: Industry-specific audit requirements (ISO, SOC2, etc.)
  • Change Management: Track all changes through artifact chain
  • Coverage Metrics: Measure implementation completeness
  • Quality Assurance: Automated validation prevents gaps

Implementation:

  • Cumulative tagging hierarchy (see SHARED_CONTENT.md)
  • Traceability section in every document
  • Bidirectional traceability matrices
  • Automated validation scripts

5. Upstream Artifact Policy (CRITICAL)

⚠️ MANDATORY RULE: Do NOT create missing upstream artifacts. Skip functionality instead.

Policy Statement: If a required upstream artifact is missing, the downstream functionality MUST NOT be implemented. This enforces the SDD document hierarchy where every implementation must have proper business/product justification through the complete artifact chain.

Decision Rules:

SituationAction
Upstream existsReference with exact document ID
Upstream required but missingSkip that functionality - do NOT implement
Upstream optional and missingUse null in traceability tag
Upstream not applicableOmit tag entirely

Rationale:

  • Prevents orphaned code: No implementation without business justification
  • Enforces governance: Changes must flow through proper channels
  • Maintains audit trail: Every feature traces to business need
  • Reduces technical debt: No undocumented "nice-to-have" features

When Upstream is Missing:

  1. Stop - Do not proceed with implementation
  2. Report - Inform user which upstream artifact is missing
  3. Advise - Recommend creating upstream artifacts first through proper channels
  4. Skip - Move on to functionality that has complete upstream chain

Reference: ai_dev_flow/TRACEABILITY.md - Section "Step 3: Decision Rules"


Integration with Other Skills

Core Workflow Skills

project-init - Initialize new project structure

  • Use BEFORE doc-flow for greenfield projects
  • Creates folder structure, domain setup, baseline files
  • Reference: .claude/skills/project-init/SKILL.md

trace-check - Validate traceability after artifact creation

  • Use AFTER doc-flow to verify bidirectional links
  • Validates cumulative tagging, ID formats, link resolution
  • Detects orphaned artifacts and traceability gaps
  • Reference: .claude/skills/trace-check/SKILL.md

doc-naming - Unified ID naming standards enforcement

  • Use for ID format validation across all artifact types
  • Validates 3-segment element IDs (TYPE.NN.xxxx)
  • Enforces variable-length DOC_NUM (2+ digits)
  • Reference: .claude/skills/doc-naming/SKILL.md

doc-validator - Cross-document validation orchestrator

  • Validates traceability across all layers
  • Detects gaps, broken links, and format violations
  • Runs auto-fix actions for common issues
  • Reference: .claude/skills/doc-validator/SKILL.md

Planning & Architecture

adr-roadmap - Generate implementation roadmaps from ADRs

  • Use AFTER creating ADR artifacts
  • Creates timeline, risk assessment, dependency mapping
  • Reference: .claude/skills/adr-roadmap/SKILL.md

project-mngt - MVP/MMP/MMR planning

  • Use for strategic release planning
  • Integrates with IMPL artifacts
  • Reference: .claude/skills/project-mngt/SKILL.md

Typical Workflow Integration

1. project-init    → Initialize project (greenfield only)
2. doc-brd         → Create BRD
3. doc-prd         → Create PRD
4. doc-ears        → Create EARS
5. doc-bdd         → Create BDD
6. doc-adr         → Create ADR
7. doc-sys         → Create SYS
8. doc-req         → Create REQ
9. doc-impl        → Create IMPL (if complex)
10. doc-ctr        → Create CTR (if interface)
11. doc-spec       → Create SPEC
12. doc-tasks      → Create TASKS
13. Implementation → Execute based on TASKS
14. trace-check    → Validate traceability

Shared Standards

CRITICAL: All artifact-specific skills share common standards defined in:

.claude/skills/doc-flow/SHARED_CONTENT.md

This document contains:

  1. Document ID Naming Standards
  2. Traceability Section Format
  3. Cumulative Tagging Hierarchy
  4. Quality Gates & Validation
  5. Traceability Matrix Enforcement
  6. Documentation Standards
  7. Document Control Section Requirements

All artifact skills (doc-brd through doc-tasks, plus doc-ref, doc-naming) import these shared standards.

Diagram Standards (Global Requirement)

All diagrams MUST use Mermaid syntax. Text-based diagrams (ASCII art, box drawings) are prohibited.

  • Authority Document: ai_dev_ssd_flow/DIAGRAM_STANDARDS.md
  • Syntax Generation: mermaid-gen skill
  • File Management: charts-flow skill (SVG conversion, embedding)

Allowed Exception: Directory tree structures (using ├── └── │) are permitted as they represent file structure, not diagrams.


Validation Overview

Automated Validation Tools

Quality Gates Validation:

# Validate artifact meets layer transition requirements (≥90%)
./scripts/validate_quality_gates.sh docs/REQ/risk/lim/REQ-03.md

# Artifact-specific validation
./ai_dev_flow/scripts/validate_brd_template.sh docs/BRD/BRD-01.md
./ai_dev_flow/scripts/validate_req_template.sh docs/REQ/api/ib/REQ-02.md

# Link integrity validation
./ai_dev_flow/scripts/validate_links.py --path docs/ --check-anchors

Tag-Based Traceability Validation:

# Complete workflow (extract → validate → generate)
python ai_dev_flow/scripts/generate_traceability_matrices.py --auto

# Individual steps
python ai_dev_flow/scripts/extract_tags.py --source src/ docs/ tests/
python ai_dev_flow/scripts/validate_tags_against_docs.py --strict
python ai_dev_flow/scripts/generate_traceability_matrices.py --output docs/generated/matrices/

Cross-Document Validation (MANDATORY)

CRITICAL: After creating each artifact, execute cross-document validation before proceeding to the next layer.

Validation Phases

PhaseTriggerCommand
Phase 1Per-documentpython scripts/validate_cross_document.py --document {doc_path} --auto-fix
Phase 2Per-layer completepython scripts/validate_cross_document.py --layer {LAYER} --auto-fix
Phase 3Final (all layers)python scripts/validate_cross_document.py --full --auto-fix

Automatic Validation Loop

LOOP:
  1. Run: python scripts/validate_cross_document.py --document {doc_path} --auto-fix
  2. IF errors fixed: GOTO LOOP (re-validate)
  3. IF warnings fixed: GOTO LOOP (re-validate)
  4. IF unfixable issues: Log for manual review, continue
  5. IF clean: Mark VALIDATED, proceed to next layer

Layer-Specific Upstream Requirements

LayerArtifactRequired Upstream TagsTag Count
1BRD(none - root)0
2PRD@brd1
3EARS@brd, @prd2
4BDD@brd, @prd, @ears3
5ADR@brd, @prd, @ears, @bdd4
6SYS@brd, @prd, @ears, @bdd, @adr5
7REQ@brd, @prd, @ears, @bdd, @adr, @sys6
8IMPL@brd, @prd, @ears, @bdd, @adr, @sys, @req7
9CTR@brd through @req (+ optional @impl)7-8
10SPEC@brd through @req (+ optional @impl, @ctr)7-9
11TASKS@brd through @spec (+ optional @impl, @ctr)8-10

Auto-Fix Actions (No Confirmation Required)

IssueFix Action
Missing cumulative tagAdd with upstream document reference
Invalid tag formatCorrect to TYPE.NN.xxxx (3-segment) or TYPE-NN format
Broken linkRecalculate path from current location
Missing traceability sectionInsert from template

Validation Codes Reference

CodeDescriptionSeverity
XDOC-001Referenced requirement ID not foundERROR
XDOC-002Missing cumulative tagERROR
XDOC-003Upstream document not foundERROR
XDOC-004Link target file missingWARNING
XDOC-005Anchor in link not foundWARNING
XDOC-006Tag format invalidERROR
XDOC-007Gap in cumulative tag chainERROR
XDOC-008Circular reference detectedERROR
XDOC-009Missing traceability sectionERROR
XDOC-010Orphaned document (no upstream refs)WARNING

Quality Gate

Blocking: YES - Cannot proceed to next layer until Phase 1 validation passes with 0 errors for the current artifact.


Related Resources

Core Standards (ai_dev_flow/)

Primary References - Authoritative Development Standard:

Templates Location

All templates located in ai_dev_flow/{artifact_type}/:

  • BRD (BRD/): 3 templates available (comprehensive, simplified, domain-specific)
  • PRD (PRD/): PRD-TEMPLATE.md
  • EARS (EARS/): EARS-TEMPLATE.md
  • BDD (BDD/): BDD-TEMPLATE.feature
  • ADR (ADR/): ADR-TEMPLATE.md, Technology Stack reference (ADR-000)
  • SYS (SYS/): SYS-TEMPLATE.md
  • REQ (REQ/): REQ-TEMPLATE.md (v3.0 with 12 sections)
  • IMPL (IMPL/): IMPL-TEMPLATE.md
  • CTR (CTR/): CTR-TEMPLATE.md + CTR-TEMPLATE.yaml (dual-file)
  • SPEC (10_SPEC/): SPEC-TEMPLATE.yaml
  • TASKS (TASKS/): TASKS-TEMPLATE.md (includes Section 8 for Implementation Contracts)
  • REF (root): REF-TEMPLATE.md (Reference Documents)

Each artifact type directory also contains:

  • Index file: {TYPE}-00_index.{ext}
  • README.md: Usage guide and best practices
  • Creation Rules: {TYPE}_CREATION_RULES.md
  • Validation Rules: {TYPE}_VALIDATION_RULES.md

Quick Reference Card

Decision Matrix

You HaveYou NeedUse This Skill
NothingBusiness requirementsdoc-brd
BRDProduct requirementsdoc-prd
PRDFormal requirementsdoc-ears
EARSTest scenariosdoc-bdd
BDDArchitecture decisionsdoc-adr
ADRSystem requirementsdoc-sys
SYSAtomic requirementsdoc-req
REQ (complex)Implementation plandoc-impl
REQ (simple)Technical specsdoc-spec
REQ/IMPL (interface)API contractsdoc-ctr
REQ/CTRTechnical specsdoc-spec
SPECTask breakdowndoc-tasks
TASKSCodeImplement!
Any stageSupplementary documentationdoc-ref

Development ROI

  • Traditional: 70 hours/component
  • SDD: 1.5 hours/component
  • Speed increase: 48x faster
  • Consistency: 100% (template-based)
  • Traceability: Automatic, bidirectional

Usage Example

User: "I need to implement position risk limit validation"

Assistant: "I'll guide you through the SDD workflow. Let me check what artifacts you have:

Current Status Check:

  • Do you have a BRD documenting business requirements? [If no → SKIP this functionality]
  • Do you have a PRD with product requirements? [If no → SKIP this functionality]
  • Do you have EARS formal requirements? [If no → SKIP this functionality]
  • Do you have BDD test scenarios? [If no → SKIP this functionality]
  • Do you have ADR architecture decisions? [If no → SKIP this functionality]
  • Do you have SYS system requirements? [If no → SKIP this functionality]
  • Do you have REQ atomic requirements? [If no → SKIP this functionality]

⚠️ CRITICAL: Upstream Artifact Policy: If ANY required upstream artifact is missing, do NOT create it and do NOT implement the downstream functionality. The SDD workflow enforces strict document hierarchy - functionality without proper business/product justification should not exist.

Next Steps: Based on your current progress, I'll recommend the appropriate skill to use next. Each skill will guide you through creating that specific artifact type with proper templates, traceability, and validation."


For detailed artifact creation guidance, use the specific artifact skill (doc-brd, doc-prd, doc-ears, doc-bdd, doc-adr, doc-sys, doc-req, doc-impl, doc-ctr, doc-spec, doc-tasks, doc-ref, doc-naming).


Version History

VersionDateChanges
1.42026-02-10T15:00:00Updated version history dates to ISO 8601 format
1.32026-01-17T00:00:00Updated to 15-layer architecture (Layers 0-14)
1.22025-12-29T00:00:00Fixed workflow sequence; Added doc-naming and doc-validator to Integration section
1.12025-11-30T00:00:00Added REF documents, ICON section
1.02025-11-01T00:00:00Initial skill creation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Gemini CLI

27.15%
按下载量换算117

Claude Code

22.02%
按下载量换算95

OpenCode

17.47%
按下载量换算75

Antigravity

11.23%
按下载量换算49

Codex

7.28%
按下载量换算31

windsurf

3.19%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills