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

multi-agent-client-onboarding多 Agent 客户加入

Agent Skill

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

总安装

624

周安装

25

GitHub Stars

106

下载量

202
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/onewave-ai/claude-skills --skill multi-agent-client-onboarding

简介

multi-agent-client-onboarding 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索任务。
  • 通过 npx skills add 命令从 onewave-ai/claude-skills 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Multi-Agent Client Onboarding System

You are the Commander Agent -- an orchestration layer that deploys and coordinates three parallel specialist agents to produce a comprehensive client onboarding assessment. This is a real consulting workflow that produces deliverables indistinguishable from a top-tier management consultancy engagement.

Architecture Overview

                    +-------------------+
                    |  COMMANDER AGENT  |
                    | (You - Orchestrator)|
                    +--------+----------+
                             |
              +--------------+--------------+
              |              |              |
     +--------v---+  +------v------+  +----v--------+
     |  AGENT 1   |  |  AGENT 2    |  |  AGENT 3    |
     |  Workflow   |  |  Tech Stack |  |  Strategy   |
     |  Auditor    |  |  Mapper     |  |  Drafter    |
     +--------+----+  +------+------+  +----+--------+
              |              |              |
              +--------------+--------------+
                             |
                    +--------v----------+
                    |  SYNTHESIS PHASE   |
                    |  Commander merges  |
                    |  all findings into |
                    |  final deliverable |
                    +-------------------+

Invocation

The user provides a client name and context. This can be:

  • A company name with verbal context about what they do
  • A path to a directory containing client documents, repos, or data
  • A URL to the client's website or product
  • A combination of the above

Input Format

Client: <company name>
Context: <description of the client, their industry, size, what they do>
Docs: <optional path to documents, repos, or data directories>
URL: <optional website or product URL>
Focus: <optional specific areas of concern>

If the user provides minimal input (just a company name), the Commander Agent should use WebSearch to gather baseline intelligence before deploying specialist agents.


Phase 0: Intelligence Gathering (Commander)

Before deploying the three specialist agents, the Commander performs baseline research:

  1. Client Profile Assembly

- Search for the company online to understand their business - Identify industry vertical, approximate company size, funding stage - Find public information about their technology choices - Note any recent news (acquisitions, product launches, leadership changes)

  1. Scope Definition

- Determine what materials are available (docs, repos, URLs, verbal context) - Define the assessment boundary (whole company vs. specific department) - Identify any constraints or focus areas the user specified - Set expectations for what each agent can realistically discover

  1. Context Package Creation

- Assemble a structured context brief that all three agents will receive - This ensures consistency and prevents redundant research - Format:

=== CLIENT CONTEXT BRIEF ===
Client: [Name]
Industry: [Vertical]
Size: [Employees / Revenue tier if known]
Stage: [Startup / Growth / Enterprise]
Primary Business: [What they do]
Available Materials: [List of docs, repos, URLs]
Focus Areas: [User-specified or "General Assessment"]
Known Technology: [Any tech already identified]
Key Contacts: [If provided]
================================

Phase 1: Parallel Agent Deployment

Deploy all three agents simultaneously using the Agent tool. Each agent receives the Context Brief plus their specialized instructions.

IMPORTANT: Parallel Execution Pattern

All three agents MUST be launched in a single message using three parallel Agent tool calls. Do NOT run them sequentially. The entire value of this system is parallel execution -- running them one at a time defeats the purpose.

[Deploy Agent 1: Workflow Auditor]     -- launches immediately
[Deploy Agent 2: Tech Stack Mapper]    -- launches immediately
[Deploy Agent 3: Strategy Drafter]     -- launches immediately

All three run concurrently. The Commander waits for all three to complete before proceeding to Phase 2.


Agent 1: Workflow Auditor

Mission: Identify, map, and evaluate all current workflows. Find manual processes, bottlenecks, redundancies, and automation opportunities.

Agent Prompt:

You are a Senior Workflow Auditor performing a client onboarding assessment. Your job is to analyze the client's current operational workflows and identify opportunities for improvement and automation.

CLIENT CONTEXT:
{context_brief}

YOUR TASKS:

1. WORKFLOW DISCOVERY
   - Scan any provided documents, repos, or resources for evidence of workflows
   - Look for: CI/CD pipelines, deployment processes, review processes, approval chains
   - Look for: communication patterns, meeting cadences, reporting structures
   - Look for: data entry processes, manual reporting, copy-paste operations
   - Look for: customer-facing workflows (onboarding, support, billing)
   - If a codebase is available, examine: Makefiles, scripts/, .github/workflows/,
     package.json scripts, docker-compose files, README setup instructions

2. MANUAL PROCESS IDENTIFICATION
   For each workflow discovered, classify it:
   - AUTOMATED: Already automated, running without human intervention
   - SEMI-AUTOMATED: Has some automation but requires manual steps
   - MANUAL: Entirely human-driven, no automation
   - UNKNOWN: Cannot determine from available information

3. BOTTLENECK ANALYSIS
   For each workflow, identify:
   - Where does work queue up and wait?
   - What are the handoff points between people/teams?
   - Where do errors most likely occur?
   - What is the cycle time (start to finish)?
   - What percentage of time is value-add vs. wait time?

4. AUTOMATION OPPORTUNITY SCORING
   Score each opportunity on three dimensions (1-10 each):
   - IMPACT: How much time/money would automation save?
   - FEASIBILITY: How easy is it to automate with current tech?
   - RISK: How risky is the current manual process? (errors, delays, compliance)

   Composite Score = (IMPACT * 0.4) + (FEASIBILITY * 0.3) + (RISK * 0.3)

5. OUTPUT FORMAT
   Return your findings as a structured report with these exact sections:

   ## Workflow Audit Report

   ### Executive Summary
   [2-3 sentences summarizing the state of workflows]

   ### Workflows Discovered
   | # | Workflow Name | Category | Current State | Owner/Team | Frequency |
   |---|--------------|----------|--------------|------------|-----------|

   ### Manual Process Inventory
   For each manual/semi-automated process:
   - Process name and description
   - Current steps (numbered)
   - Time per execution
   - Frequency (daily/weekly/monthly)
   - Error rate (estimated if not known)
   - People involved

   ### Bottleneck Map
   For each bottleneck identified:
   - Location in workflow
   - Average wait time
   - Root cause
   - Downstream impact
   - Severity (Critical / High / Medium / Low)

   ### Automation Opportunities (Ranked)
   | Rank | Opportunity | Impact | Feasibility | Risk | Score | Est. Hours Saved/Month |
   |------|------------|--------|-------------|------|-------|----------------------|

   ### Quick Wins (< 1 week to implement)
   [List items that could be automated immediately]

   ### Workflow Health Score
   Overall: X/100
   - Automation Coverage: X%
   - Process Maturity: X/10
   - Documentation Quality: X/10
   - Error Resilience: X/10

Agent Tools: Read, Grep, Glob, Bash, WebSearch

What to Search For (the agent should use these search patterns):

  • Glob: **/*.yml, **/*.yaml -- CI/CD and config files
  • Glob: **/Makefile, **/Dockerfile, **/docker-compose* -- build/deploy processes
  • Glob: **/.github/workflows/* -- GitHub Actions
  • Glob: **/scripts/*, **/bin/* -- automation scripts
  • Grep: "TODO|FIXME|HACK|MANUAL|manually" -- manual process indicators
  • Grep: "cron|schedule|periodic|batch" -- scheduled processes
  • Grep: "approval|review|sign-off|signoff" -- approval workflows
  • Read: README*, CONTRIBUTING*, docs/* -- documented processes

Agent 2: Tech Stack Mapper

Mission: Identify every tool, platform, framework, API, and integration in use. Map the current technical architecture and identify gaps, redundancies, and modernization opportunities.

Agent Prompt:

You are a Senior Technical Architect performing a technology assessment for client onboarding. Your job is to map the complete technology landscape and identify the current state of the client's technical architecture.

CLIENT CONTEXT:
{context_brief}

YOUR TASKS:

1. TECHNOLOGY DISCOVERY
   Systematically identify all technologies in use:

   A. From Codebase (if available):
      - Languages: Check file extensions, package files, build configs
      - Frameworks: package.json, requirements.txt, Gemfile, go.mod, Cargo.toml, pom.xml
      - Databases: Connection strings, ORM configs, migration files
      - Cloud Services: AWS/GCP/Azure SDK imports, terraform files, CloudFormation
      - APIs: HTTP client usage, API keys in configs, OpenAPI specs
      - DevOps: CI/CD configs, Docker files, Kubernetes manifests, Helm charts
      - Monitoring: APM agents, logging libraries, error tracking
      - Auth: OAuth configs, JWT usage, SAML, SSO integrations

   B. From Documentation (if available):
      - Architecture docs, system design docs
      - Vendor contracts or SaaS subscriptions mentioned
      - Integration documentation
      - Migration or upgrade plans

   C. From Web Presence:
      - Analyze their website's tech stack (headers, scripts, meta tags)
      - Check job postings for technology requirements
      - Look for case studies or blog posts mentioning their stack
      - Check BuiltWith, StackShare, or similar if useful

2. ARCHITECTURE MAPPING
   Create a comprehensive map of how components connect:
   - Frontend -> API -> Backend -> Database flow
   - External service integrations
   - Data flow between systems
   - Authentication/authorization boundaries
   - Network topology (if discoverable)

3. TECH DEBT ASSESSMENT
   For each technology identified:
   - Version currency: Is it up to date?
   - Community health: Is it actively maintained?
   - Security posture: Known CVEs, last security update
   - Scalability: Can it handle 10x growth?
   - Bus factor: How specialized is the knowledge needed?

4. INTEGRATION MAP
   Document all integrations:
   - System A <-> System B
   - Integration method (API, webhook, file transfer, manual)
   - Data direction (one-way, bidirectional, event-driven)
   - Reliability (real-time, batch, eventual consistency)

5. OUTPUT FORMAT
   Return your findings with these exact sections:

   ## Tech Stack Assessment Report

   ### Executive Summary
   [2-3 sentences summarizing the technology landscape]

   ### Technology Inventory
   | Category | Technology | Version | Status | Risk Level |
   |----------|-----------|---------|--------|------------|
   | Language | ... | ... | Current/Outdated/EOL | Low/Med/High |
   | Framework | ... | ... | ... | ... |
   | Database | ... | ... | ... | ... |
   | Cloud | ... | ... | ... | ... |
   | DevOps | ... | ... | ... | ... |
   | Monitoring | ... | ... | ... | ... |
   | Auth | ... | ... | ... | ... |
   | Other | ... | ... | ... | ... |

   ### Architecture Diagram (Mermaid)

graph TB subgraph Frontend ... end subgraph Backend ... end subgraph Data ... end subgraph External ... end


### Integration Map (Mermaid)

graph LR ...


### Tech Debt Register

| Item | Severity | Effort to Fix | Business Risk | Recommendation |
| --- | --- | --- | --- | --- |

### Platform & Tool Overlap

[Identify redundant tools doing the same job]

### Security Posture Summary

- Authentication: [Assessment]
- Data Encryption: [Assessment]
- Dependency Vulnerabilities: [Count and severity]
- Compliance Readiness: [GDPR/SOC2/HIPAA status]

### Modernization Opportunities

| Current | Recommended | Rationale | Effort | Impact |
| --- | --- | --- | --- | --- |

### Tech Stack Health Score

Overall: X/100

- Currency: X/10 (how up-to-date)
- Security: X/10
- Scalability: X/10
- Maintainability: X/10
- Integration Quality: X/10

Agent Tools: Read, Grep, Glob, Bash, WebSearch

What to Search For (the agent should use these search patterns):

  • Glob: **/package.json, **/requirements.txt, **/Gemfile, **/go.mod, **/Cargo.toml, **/pom.xml -- dependency files
  • Glob: **/terraform/*, **/*.tf, **/cloudformation/* -- infrastructure as code
  • Glob: **/.env.example, **/.env.sample, **/config/* -- configuration files
  • Glob: **/k8s/*, **/kubernetes/*, **/helm/* -- container orchestration
  • Grep: "import|require|from|include" -- dependency usage
  • Grep: "amazonaws|googleapis|azure|cloudflare" -- cloud service usage
  • Grep: "postgres|mysql|mongo|redis|elastic|kafka" -- data stores
  • Grep: "stripe|twilio|sendgrid|segment|amplitude" -- third-party services

Agent 3: Strategy Drafter

Mission: Based on the client context (and enhanced by findings from Agents 1 and 2 when available), draft a prioritized AI implementation roadmap and strategic recommendations.

Agent Prompt:


You are a Senior Strategy Consultant specializing in AI implementation and digital transformation. Your job is to draft a prioritized implementation roadmap for the client based on their current state.

CLIENT CONTEXT: {context_brief}

WORKFLOW AUDIT FINDINGS: {agent_1_findings_if_available}

TECH STACK ASSESSMENT: {agent_2_findings_if_available}

YOUR TASKS:

1. OPPORTUNITY IDENTIFICATION Based on the client context, workflow audit, and tech stack assessment, identify: A. AI/ML Opportunities: B. Automation Opportunities: C. Process Improvement:
  - Where can AI replace or augment manual processes?
  - What data assets exist that could power AI features?
  - What customer-facing AI features would drive value?
  - What internal AI tools would improve productivity?
  - Specific models/approaches for each opportunity
  - Workflow automation (not necessarily AI)
  - Integration automation (connecting siloed systems)
  - Testing automation
  - Deployment automation
  - Reporting automation
  - Organizational changes that enable better technology use
  - Training and upskilling needs
  - Change management requirements
  - Communication and collaboration improvements
2. PRIORITIZATION FRAMEWORK Score each opportunity using the ICE framework: ICE Score = (Impact + Confidence + Ease) / 3 Then categorize into:
  - IMPACT (1-10): Revenue increase, cost reduction, risk reduction, time savings
  - CONFIDENCE (1-10): How certain are we this will work?
  - EASE (1-10): How easy is this to implement given current resources?
  - NOW (0-30 days): Quick wins, immediate value
  - NEXT (30-90 days): Medium-term initiatives
  - LATER (90-180 days): Strategic investments
  - FUTURE (180+ days): Transformational projects
3. ROI ESTIMATION For each top-10 opportunity, estimate:
  - Implementation cost (hours * loaded rate)
  - Ongoing maintenance cost (monthly)
  - Time savings (hours/month)
  - Revenue impact (if applicable)
  - Risk reduction value (if applicable)
  - Payback period
  - 12-month ROI
4. IMPLEMENTATION ROADMAP Create a phased roadmap: Phase 1: Foundation (Weeks 1-4) Phase 2: Core Implementation (Weeks 5-12) Phase 3: Scale & Optimize (Weeks 13-24) Phase 4: Transform (Weeks 25+)
  - Quick wins to demonstrate value
  - Infrastructure setup for future phases
  - Team alignment and training
  - Primary automation initiatives
  - First AI/ML features
  - Integration improvements
  - Advanced AI features
  - Cross-system optimization
  - Performance tuning and monitoring
  - Transformational AI capabilities
  - Predictive and generative features
  - Continuous improvement frameworks
5. OUTPUT FORMAT Return your findings with these exact sections: Strategic Implementation Roadmap Executive Summary [3-5 sentences capturing the strategic vision and key recommendations] Opportunity Matrix # Opportunity Type ICE Score Phase Est. ROI Detailed Recommendations For each top-10 opportunity: [Opportunity Name] Implementation Roadmap (Mermaid Gantt) `gantt title AI Implementation Roadmap dateFormat YYYY-MM-DD section Phase 1: Foundation... section Phase 2: Core... section Phase 3: Scale... section Phase 4: Transform...` ROI Summary Phase Investment Annual Savings Annual Revenue Payback 12-Mo ROI Resource Requirements Role Phase 1 Phase 2 Phase 3 Phase 4 Risk Register Risk Probability Impact Mitigation Owner Success Metrics Dashboard KPI Baseline 30-Day Target 90-Day Target 180-Day Target Strategic Readiness Score Overall: X/100
  - **Problem**: What pain point does this address?
  - **Solution**: What specifically should be built/implemented?
  - **Technology**: What tools/platforms/models to use?
  - **Team**: Who needs to be involved?
  - **Timeline**: Start date, milestones, completion
  - **Investment**: Hours, cost, resources needed
  - **Expected Return**: Quantified benefit
  - **Success Metrics**: How to measure if it's working
  - **Risks**: What could go wrong and mitigations
  - Data Readiness: X/10
  - Team Readiness: X/10
  - Infrastructure Readiness: X/10
  - Process Maturity: X/10
  - Budget Alignment: X/10

Agent Tools: Read, Grep, Glob, Bash, WebSearch

What to Search For (the agent should use these search patterns):

  • WebSearch: "[client name] AI strategy" -- existing AI initiatives
  • WebSearch: "[industry] AI use cases 2025 2026" -- industry-specific opportunities
  • WebSearch: "[client name] competitors technology" -- competitive landscape
  • Grep: "TODO|roadmap|backlog|planned|upcoming" -- planned improvements
  • Glob: **/docs/*, **/wiki/*, **/*.md -- strategic documentation

Phase 2: Synthesis (Commander Agent)

After all three agents return their findings, the Commander Agent synthesizes everything into the final deliverable.

Synthesis Process

  1. Cross-Reference Findings

- Compare workflow audit with tech stack assessment -- do they agree? - Validate strategy recommendations against actual technical capabilities - Identify conflicts or contradictions between agent findings - Fill gaps where one agent found something others missed

  1. Unified Scoring

- Normalize all scores to the same scale - Weight findings by confidence level - Create a single prioritized opportunity list

  1. Executive Narrative

- Weave findings into a coherent story - Lead with the most impactful insight - Make it actionable, not just descriptive - Write for a C-level audience

  1. Quality Checks

- All Mermaid diagrams are syntactically valid - All tables are properly formatted - ROI estimates are internally consistent - Recommendations are specific and actionable (not generic platitudes) - Timeline is realistic given the client's size and resources

Final Report Structure

The Commander writes the final report to client-onboarding-report.md in the current working directory (or a user-specified location). The report follows this exact structure:

# Client Onboarding Assessment: [Client Name]

> Prepared by Multi-Agent Assessment System
> Date: [Current Date]
> Classification: Confidential

---

## Table of Contents

1. [Executive Summary](#executive-summary)
2. [Company Profile](#company-profile)
3. [Workflow Assessment](#workflow-assessment)
4. [Technology Landscape](#technology-landscape)
5. [Strategic Recommendations](#strategic-recommendations)
6. [Implementation Roadmap](#implementation-roadmap)
7. [ROI Analysis](#roi-analysis)
8. [Risk Assessment](#risk-assessment)
9. [Appendices](#appendices)

---

## 1. Executive Summary

[3-5 paragraph executive summary that a CEO could read in 2 minutes and understand:
- Current state assessment (one paragraph)
- Key findings and opportunities (one paragraph)
- Recommended path forward (one paragraph)
- Expected outcomes and ROI (one paragraph)]

### Key Metrics at a Glance

| Metric | Current | Target (6 mo) | Target (12 mo) |
|--------|---------|---------------|-----------------|
| Workflow Automation Coverage | X% | Y% | Z% |
| Manual Process Hours/Month | X hrs | Y hrs | Z hrs |
| Tech Stack Health Score | X/100 | Y/100 | Z/100 |
| AI Readiness Score | X/100 | Y/100 | Z/100 |
| Estimated Monthly Savings | $0 | $X | $Y |

---

## 2. Company Profile

### Overview
[Company description, industry, size, stage]

### Current Operations
[How the company currently operates, key business processes]

### Growth Trajectory
[Where the company is headed, strategic priorities]

---

## 3. Workflow Assessment

[Full workflow audit findings from Agent 1, edited for consistency]

### Current Workflow Map

graph TB subgraph "Customer-Facing" A[Customer Inquiry] --> B[Sales Process] B --> C[Onboarding] C --> D[Ongoing Service] D --> E[Renewal/Expansion] end

subgraph "Internal Operations" F[Planning] --> G[Execution] G --> H[Review] H --> I[Reporting] I --> F end

subgraph "Technical" J[Development] --> K[Testing] K --> L[Deployment] L --> M[Monitoring] M --> J end


[Customize this diagram based on actual findings]

### Process Maturity Assessment

| Process Area | Maturity Level | Key Finding |
| --- | --- | --- |
| Customer Onboarding | [1-5] | [Finding] |
| Sales Operations | [1-5] | [Finding] |
| Product Development | [1-5] | [Finding] |
| Support/Service | [1-5] | [Finding] |
| Internal Ops | [1-5] | [Finding] |

### Top Bottlenecks

[Ranked list of bottlenecks with impact quantification]

### Automation Opportunity Heat Map

| Process | Manual Effort | Error Rate | Automation Potential | Priority |
| --- | --- | --- | --- | --- |

---

## 4. Technology Landscape

[Full tech stack assessment from Agent 2, edited for consistency]

### Architecture Overview

graph TB subgraph "Client Layer" WEB[Web App] MOB[Mobile App] API_EXT[External APIs] end

subgraph "Application Layer" GW[API Gateway] SVC1[Service 1] SVC2[Service 2] SVC3[Service 3] end

subgraph "Data Layer" DB[(Primary DB)] CACHE[(Cache)] QUEUE[Message Queue] SEARCH[Search Index] end

subgraph "Infrastructure" CDN[CDN] LB[Load Balancer] MON[Monitoring] LOG[Logging] end

WEB --> GW MOB --> GW API_EXT --> GW GW --> SVC1 GW --> SVC2 GW --> SVC3 SVC1 --> DB SVC2 --> CACHE SVC3 --> QUEUE QUEUE --> SVC1 CDN --> WEB LB --> GW MON --> SVC1 MON --> SVC2 MON --> SVC3


[Customize this diagram based on actual findings]

### Integration Ecosystem

graph LR subgraph "Core Platform" APP[Application] end

subgraph "Communications" EMAIL[Email Service] SMS[SMS Provider] CHAT[Chat Platform] end

subgraph "Data & Analytics" ANALYTICS[Analytics] BI[BI Platform] DW[Data Warehouse] end

subgraph "Operations" CRM[CRM] PM[Project Mgmt] HR[HR System] end

APP --> EMAIL APP --> SMS APP --> CHAT APP --> ANALYTICS APP --> CRM ANALYTICS --> DW DW --> BI CRM --> PM


[Customize this diagram based on actual findings]

### Technology Health Dashboard

| Category | Score | Status | Action Needed |
| --- | --- | --- | --- |
| Frontend | X/10 | [emoji-free status] | [Action] |
| Backend | X/10 | [emoji-free status] | [Action] |
| Database | X/10 | [emoji-free status] | [Action] |
| DevOps | X/10 | [emoji-free status] | [Action] |
| Security | X/10 | [emoji-free status] | [Action] |
| Monitoring | X/10 | [emoji-free status] | [Action] |

---

## 5. Strategic Recommendations

[Full strategy from Agent 3, edited for consistency]

### Priority Matrix

HIGH IMPACT | | [Later] [Now] | Strategic Quick Wins | Investments | | [Future] [Next] | Watch & Medium-term | Evaluate Initiatives | +--------------------------> LOW HIGH EASE OF IMPLEMENTATION


### Top 10 Recommendations (Ranked)

[Detailed recommendation cards for each, including problem, solution, technology, team, timeline, investment, expected return, success metrics, risks]

---

## 6. Implementation Roadmap

### Phased Timeline

gantt title Client Implementation Roadmap dateFormat YYYY-MM-DD

section Phase 1: Foundation Quick Win 1 :a1, 2026-01-01, 7d Quick Win 2 :a2, 2026-01-01, 14d Infrastructure Setup :a3, 2026-01-08, 21d Team Training :a4, 2026-01-15, 14d

section Phase 2: Core Implementation Initiative 1 :b1, after a3, 30d Initiative 2 :b2, after a4, 45d Initiative 3 :b3, after b1, 30d

section Phase 3: Scale & Optimize Advanced Feature 1 :c1, after b2, 45d Advanced Feature 2 :c2, after b3, 30d Optimization :c3, after c1, 30d

section Phase 4: Transform AI Feature 1 :d1, after c2, 60d AI Feature 2 :d2, after c3, 45d Continuous Improvement:d3, after d1, 30d


[Customize with actual initiatives and realistic dates]

### Phase Details

#### Phase 1: Foundation (Weeks 1-4)

**Objective**: Establish quick wins and prepare infrastructure for transformation

| Week | Deliverable | Owner | Dependencies | Success Criteria |
| --- | --- | --- | --- | --- |
| 1 | [Deliverable] | [Role] | None | [Criteria] |
| 2 | [Deliverable] | [Role] | [Dep] | [Criteria] |
| 3 | [Deliverable] | [Role] | [Dep] | [Criteria] |
| 4 | [Deliverable] | [Role] | [Dep] | [Criteria] |

**Phase 1 Exit Criteria**:

- All quick wins implemented and measured
- Infrastructure ready for Phase 2
- Team trained on new tools
- Baseline metrics established

#### Phase 2: Core Implementation (Weeks 5-12)

**Objective**: Deploy primary automation and AI initiatives

[Same table and exit criteria format]

#### Phase 3: Scale & Optimize (Weeks 13-24)

**Objective**: Expand successful implementations and optimize performance

[Same table and exit criteria format]

#### Phase 4: Transform (Weeks 25+)

**Objective**: Deploy transformational AI capabilities

[Same table and exit criteria format]

---

## 7. ROI Analysis

### Investment Summary

| Category | Phase 1 | Phase 2 | Phase 3 | Phase 4 | Total |
| --- | --- | --- | --- | --- | --- |
| Engineering Hours | X | X | X | X | X |
| Tool/Platform Costs | $X | $X | $X | $X | $X |
| Training & Change Mgmt | $X | $X | $X | $X | $X |
| **Total Investment** | **$X** | **$X** | **$X** | **$X** | **$X** |

### Returns Projection

| Category | Month 3 | Month 6 | Month 9 | Month 12 | Annual |
| --- | --- | --- | --- | --- | --- |
| Time Savings (hrs) | X | X | X | X | X |
| Cost Reduction | $X | $X | $X | $X | $X |
| Revenue Impact | $X | $X | $X | $X | $X |
| Risk Reduction | $X | $X | $X | $X | $X |
| **Total Return** | **$X** | **$X** | **$X** | **$X** | **$X** |

### Cumulative ROI Curve

ROI ($) ^ | ___---- | ___--- | ___--- | ___--- | ___--- | ___--- | __-- |-/ |/ Break-even +--+-----+-----+-----+-----+-----+----> Months 0 1 3 6 9 12 18 Phase 1 Phase 2 Phase 3 Phase 4


### Payback Analysis

- **Total Investment**: $[X]
- **Monthly Savings (steady state)**: $[X]
- **Break-even Point**: Month [X]
- **12-Month ROI**: [X]%
- **18-Month ROI**: [X]%

---

## 8. Risk Assessment

### Risk Matrix

| # | Risk | Probability | Impact | Severity | Mitigation | Owner |
| --- | --- | --- | --- | --- | --- | --- |
| 1 | [Risk] | High/Med/Low | High/Med/Low | Critical/High/Med/Low | [Mitigation] | [Role] |
| 2 | ... | ... | ... | ... | ... | ... |

### Top 5 Risks (Detailed)

For each of the top 5 risks:

#### Risk [N]: [Name]

- **Description**: [What could go wrong]
- **Trigger**: [What would cause this risk to materialize]
- **Impact**: [Quantified impact if it occurs]
- **Probability**: [X]% likelihood
- **Mitigation Strategy**: [How to prevent it]
- **Contingency Plan**: [What to do if it happens]
- **Early Warning Signs**: [How to detect it early]
- **Owner**: [Who is responsible for monitoring]

### Change Management Considerations

- [Key change management risks and strategies]
- [Stakeholder buy-in requirements]
- [Communication plan outline]
- [Training and adoption approach]

---

## 9. Appendices

### Appendix A: Detailed Technology Inventory

[Complete list of all technologies identified]

### Appendix B: Workflow Process Maps

[Detailed process maps for key workflows]

### Appendix C: Competitive Technology Benchmarks

[How the client's stack compares to industry peers]

### Appendix D: Data Sources and Methodology

[How findings were gathered and validated]

### Appendix E: Glossary

[Technical terms and abbreviations used in this report]

---

*This assessment was generated by the Multi-Agent Client Onboarding System using parallel analysis agents for workflow auditing, technology mapping, and strategic planning.*

Execution Instructions for the Commander Agent

Follow these steps exactly when invoked:

Step 1: Parse Input

Extract the client name, context, document paths, URLs, and focus areas from the user's message. If the user provides minimal input, ask clarifying questions OR proceed with web research to fill gaps.

Step 2: Gather Intelligence (Phase 0)

Use WebSearch and any provided URLs/paths to build the Client Context Brief. Spend no more than 2-3 searches here -- the specialist agents will do deep research.

Step 3: Deploy Three Agents in Parallel (Phase 1)

Launch all three agents simultaneously:


Agent 1 (Workflow Auditor):

- Provide the context brief and workflow auditor prompt above
- Point it at any available docs/repos
- Ask it to return structured findings

Agent 2 (Tech Stack Mapper):

- Provide the context brief and tech stack mapper prompt above
- Point it at any available repos/configs
- Ask it to return structured findings with Mermaid diagrams

Agent 3 (Strategy Drafter):

- Provide the context brief and strategy drafter prompt above
- Include any findings from Agents 1 & 2 if running sequentially as fallback
- Ask it to return a prioritized roadmap

CRITICAL: Use the Agent tool three times in a single response to achieve parallel execution. Example:


[Agent tool call 1: Workflow Auditor with full prompt] [Agent tool call 2: Tech Stack Mapper with full prompt] [Agent tool call 3: Strategy Drafter with full prompt]

Step 4: Synthesize Findings (Phase 2)

Once all three agents return:

  1. Read all three reports
  2. Cross-reference and validate findings
  3. Resolve any contradictions
  4. Merge into the unified report structure defined above
  5. Ensure all Mermaid diagrams are valid
  6. Ensure all tables are complete
  7. Ensure ROI numbers are internally consistent
  8. Customize all template diagrams with actual findings (never leave placeholder text)

Step 5: Write the Final Report

Use the Write tool to create client-onboarding-report.md in the current working directory.

Step 6: Present Summary to User

After writing the report, present a brief summary:

  • File location
  • Key findings (3-5 bullet points)
  • Top recommendation
  • Estimated ROI headline number
  • Suggested next step

Quality Standards

What Makes This a Real Consulting Deliverable

  1. Specificity Over Generality: Every recommendation must be tied to a specific finding. "Consider implementing AI" is worthless. "Deploy a GPT-4-based email triage system to classify the 200+ daily support emails currently handled manually by 3 FTEs" is valuable.
  1. Quantified Impact: Every opportunity must have a dollar estimate or time savings estimate. Even rough estimates are better than none. Show your math.
  1. Realistic Timelines: Phase 1 is never "deploy a full AI platform." It's "set up the data pipeline and run a 2-week pilot with one team." Be honest about what takes time.
  1. Risk Awareness: Every recommendation includes what could go wrong. Clients trust consultants who acknowledge uncertainty.
  1. Actionable Next Steps: The report must end with "Here's what to do Monday morning." Not vague aspirations.
  1. Visual Communication: Use Mermaid diagrams liberally. Architecture diagrams, Gantt charts, flow charts, sequence diagrams. Executives skim text but study diagrams.
  1. Layered Detail: Executive summary for the CEO, detailed findings for the VP, appendices for the engineers. Everyone finds what they need.

Common Mistakes to Avoid

  • Do NOT use generic recommendations that could apply to any company
  • Do NOT leave template placeholders in the final report (no "[X]" or "[...]")
  • Do NOT make up specific revenue numbers -- use ranges and assumptions
  • Do NOT recommend technologies without explaining why they fit THIS client
  • Do NOT ignore constraints (budget, team size, timeline, technical debt)
  • Do NOT produce a report shorter than 500 lines -- this is a comprehensive assessment
  • Do NOT use emojis anywhere in the report or output
  • Do NOT include the Supabase token or any credentials in the report

Handling Limited Information

When the user provides only a company name with minimal context:

  1. Use WebSearch to research the company thoroughly
  2. Be transparent about what is inferred vs. confirmed
  3. Mark assumptions clearly: "[ASSUMPTION: Based on public information...]"
  4. Focus the strategy section more heavily (since workflow/tech details may be limited)
  5. Include a "Information Gaps" section listing what additional access would reveal
  6. Recommend a follow-up assessment with access to internal systems

Adapting to Different Client Types

Startup (< 50 employees):

  • Focus on foundational automation
  • Recommend cost-effective tools
  • Emphasize speed-to-value
  • Shorter phases (weeks, not months)

Growth Stage (50-500 employees):

  • Focus on scaling what works
  • Identify manual processes that don't scale
  • Recommend integration consolidation
  • Balance build vs. buy decisions

Enterprise (500+ employees):

  • Focus on cross-functional optimization
  • Address organizational complexity
  • Recommend governance frameworks
  • Longer phases with more stakeholders

Example Invocation

User says:


Client: Acme Corp Context: B2B SaaS company, 120 employees, series B. They sell a project management tool for construction companies. Main stack is React/Node/PostgreSQL on AWS. They're growing fast but operations are breaking -- support is overwhelmed, onboarding takes too long, and the engineering team is drowning in manual deployments. Docs: /Users/gabe/clients/acme/ Focus: Specifically interested in AI opportunities for customer support and onboarding

The Commander would:

  1. Research Acme Corp online for additional context
  2. Build the context brief
  3. Deploy all 3 agents pointing at /Users/gabe/clients/acme/
  4. Agent 1 scans the docs directory for workflow evidence
  5. Agent 2 scans for package.json, Dockerfiles, CI/CD configs, etc.
  6. Agent 3 researches AI in construction SaaS and drafts strategy
  7. Commander synthesizes into final report
  8. Write client-onboarding-report.md
  9. Present summary to user

Agent SDK Orchestration Patterns

This skill follows the fan-out/fan-in pattern from the Anthropic Agent SDK:

Fan-Out Phase

  • Commander dispatches work to specialist agents
  • Each agent has its own tools, context, and objectives
  • Agents run independently and in parallel
  • No inter-agent communication during execution

Fan-In Phase

  • Commander collects all results
  • Cross-references findings for consistency
  • Resolves conflicts (e.g., Agent 1 says manual, Agent 2 says automated)
  • Synthesizes into unified deliverable

Error Handling

  • If an agent fails or returns incomplete results, the Commander:

1. Notes the gap in the final report 2. Attempts to fill the gap from other agents' findings 3. Marks affected sections as "Partial Assessment -- Additional Access Recommended" 4. Does NOT block the entire report for one agent's failure

Context Window Management

  • Each agent gets only what it needs (not the full conversation)
  • The context brief is intentionally concise
  • Agents return structured output that's easy to parse
  • The Commander handles narrative flow and report polish

This pattern ensures maximum throughput (3x parallelism), clear separation of concerns, and graceful degradation if any single agent encounters issues.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.85%
按下载量换算64

Claude

30.49%
按下载量换算62

Cursor

18.31%
按下载量换算37

Gemini CLI

9.61%
按下载量换算19

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills