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

supplier-collaboration供应商协作

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

13

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kishorkukreja/awesome-supply-chain --skill supplier-collaboration

简介

supplier-collaboration 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态和代码变更进行整理。
  • 支持查询协作事项、代码变更历史和仓库维护状态等 GitHub 相关操作。
  • 安装前需确认权限范围和维护状态,注意是否会触发联网或命令执行。
  • 建议结合原始 README 核验具体用法,避免直接依赖未经验证的输出结果。

SKILL.md

Supplier Collaboration

You are an expert in supplier collaboration and partnership management. Your goal is to help organizations build strategic supplier relationships, implement collaborative processes, and create mutual value through enhanced information sharing and joint planning.

Initial Assessment

Before implementing supplier collaboration, understand:

  1. Collaboration Objectives

- What collaboration goals? (cost reduction, innovation, risk mitigation, service improvement) - Target outcomes and benefits? - Strategic vs. transactional suppliers? - Existing partnership maturity?

  1. Supplier Segmentation

- How many suppliers in scope? - Supplier classification? (strategic, preferred, approved, transactional) - High-value vs. high-volume suppliers? - Geographic distribution?

  1. Current Relationship State

- Relationship quality and trust level? - Existing collaboration mechanisms? - Information sharing practices? - Joint initiatives or programs?

  1. Organizational Readiness

- Cross-functional alignment? - Technology capabilities (portals, EDI, APIs)? - Resources for supplier management? - Change management capability?


Supplier Collaboration Framework

Collaboration Maturity Model

Level 1: Transactional

  • Price-focused negotiations
  • Arm's-length relationships
  • Limited information sharing
  • Order-based interactions
  • Annual contract reviews

Level 2: Cooperative

  • Open communication
  • Basic performance metrics
  • Scheduled reviews
  • Problem-solving together
  • Multi-year contracts

Level 3: Coordinated

  • Joint planning processes
  • Shared forecasts and plans
  • Performance improvement programs
  • Technology integration (EDI, portals)
  • Risk and benefit sharing

Level 4: Collaborative

  • Strategic alignment
  • Co-innovation and development
  • Integrated systems and processes
  • Joint value creation
  • Long-term partnerships

Level 5: Synchronized

  • Seamless integration
  • Real-time visibility and planning
  • Autonomous replenishment
  • Ecosystem orchestration
  • Shared vision and roadmap

Collaboration Models

1. Vendor-Managed Inventory (VMI)

  • Supplier manages buyer's inventory
  • Access to consumption data
  • Automated replenishment
  • Reduced stockouts and inventory

2. Collaborative Planning, Forecasting, and Replenishment (CPFR)

  • Joint demand planning
  • Shared forecasts and exception management
  • Synchronized operations
  • Improved forecast accuracy

3. Early Supplier Involvement (ESI)

  • Supplier input in product design
  • Technical expertise leveraged
  • Design for manufacturability
  • Faster time-to-market

4. Joint Business Planning (JBP)

  • Annual planning sessions
  • Aligned goals and metrics
  • Investment planning
  • Growth strategies

5. Co-Innovation Partnerships

  • Joint R&D projects
  • IP sharing agreements
  • Innovation roadmaps
  • Shared funding

Supplier Collaboration Implementation

VMI Program Design

import pandas as pd
import numpy as np
from datetime import datetime, timedelta

class VMIProgram:
    """Vendor-Managed Inventory program implementation"""

    def __init__(self, buyer_id, supplier_id):
        self.buyer_id = buyer_id
        self.supplier_id = supplier_id
        self.inventory_positions = []
        self.replenishment_orders = []
        self.performance_metrics = {}

    def set_vmi_parameters(self, product_id, min_level, max_level,
                          order_multiple, lead_time_days, service_level=0.95):
        """
        Set VMI parameters for a product

        min_level: Reorder point
        max_level: Maximum inventory level (order-up-to)
        order_multiple: Minimum order quantity or multiple
        """

        return {
            'product_id': product_id,
            'min_level': min_level,
            'max_level': max_level,
            'order_multiple': order_multiple,
            'lead_time_days': lead_time_days,
            'service_level': service_level,
            'last_update': datetime.now()
        }

    def calculate_vmi_replenishment(self, current_inventory, pipeline_inventory,
                                   daily_consumption, vmi_params):
        """
        Calculate VMI replenishment quantity

        current_inventory: On-hand inventory
        pipeline_inventory: In-transit/on-order inventory
        daily_consumption: Average daily consumption
        vmi_params: VMI parameters dict
        """

        # Inventory position = on-hand + pipeline
        inventory_position = current_inventory + pipeline_inventory

        # Check if replenishment needed
        if inventory_position <= vmi_params['min_level']:
            # Calculate order quantity to reach max level
            target_inventory = vmi_params['max_level']
            order_quantity = target_inventory - inventory_position

            # Round to order multiple
            order_multiple = vmi_params['order_multiple']
            if order_multiple > 0:
                order_quantity = np.ceil(order_quantity / order_multiple) * order_multiple

            # Calculate days of supply
            days_of_supply = order_quantity / daily_consumption if daily_consumption > 0 else 0

            return {
                'replenishment_needed': True,
                'order_quantity': int(order_quantity),
                'inventory_position': inventory_position,
                'target_inventory': target_inventory,
                'days_of_supply': round(days_of_supply, 1),
                'reason': 'Inventory below minimum threshold'
            }
        else:
            return {
                'replenishment_needed': False,
                'order_quantity': 0,
                'inventory_position': inventory_position,
                'days_of_supply': round(inventory_position / daily_consumption if daily_consumption > 0 else 0, 1),
                'reason': 'Inventory sufficient'
            }

    def simulate_vmi_performance(self, demand_series, vmi_params, initial_inventory):
        """
        Simulate VMI program performance

        demand_series: Daily demand data
        vmi_params: VMI parameters
        initial_inventory: Starting inventory
        """

        results = []
        current_inventory = initial_inventory
        pipeline = 0
        orders_placed = []

        for day, demand in enumerate(demand_series):
            # Check for arriving orders
            arriving_orders = [o for o in orders_placed if o['arrival_day'] == day]
            for order in arriving_orders:
                current_inventory += order['quantity']
                pipeline -= order['quantity']
                orders_placed.remove(order)

            # Satisfy demand
            demand_satisfied = min(demand, current_inventory)
            stockout = max(0, demand - current_inventory)
            current_inventory = max(0, current_inventory - demand)

            # Check if replenishment needed
            daily_avg_consumption = np.mean(demand_series[:day+1]) if day > 0 else demand
            replenishment = self.calculate_vmi_replenishment(
                current_inventory, pipeline, daily_avg_consumption, vmi_params
            )

            if replenishment['replenishment_needed']:
                # Place order
                order = {
                    'day': day,
                    'quantity': replenishment['order_quantity'],
                    'arrival_day': day + vmi_params['lead_time_days']
                }
                orders_placed.append(order)
                pipeline += order['quantity']

            results.append({
                'day': day,
                'demand': demand,
                'demand_satisfied': demand_satisfied,
                'stockout': stockout,
                'ending_inventory': current_inventory,
                'pipeline_inventory': pipeline,
                'order_placed': replenishment['replenishment_needed'],
                'order_quantity': replenishment['order_quantity']
            })

        df = pd.DataFrame(results)

        # Calculate metrics
        metrics = {
            'avg_inventory': df['ending_inventory'].mean(),
            'max_inventory': df['ending_inventory'].max(),
            'min_inventory': df['ending_inventory'].min(),
            'total_stockouts': df['stockout'].sum(),
            'fill_rate': (df['demand_satisfied'].sum() / df['demand'].sum() * 100) if df['demand'].sum() > 0 else 100,
            'orders_placed': df['order_placed'].sum(),
            'avg_order_size': df[df['order_placed']]['order_quantity'].mean() if df['order_placed'].sum() > 0 else 0
        }

        return {
            'simulation_results': df,
            'performance_metrics': metrics
        }

# Example VMI implementation
vmi = VMIProgram(buyer_id='BUYER001', supplier_id='SUP001')

# Set VMI parameters
vmi_params = vmi.set_vmi_parameters(
    product_id='PROD001',
    min_level=500,      # Reorder point
    max_level=2000,     # Order-up-to level
    order_multiple=100,  # Order in multiples of 100
    lead_time_days=7,
    service_level=0.95
)

# Simulate 90 days of VMI
np.random.seed(42)
demand_series = np.random.poisson(lam=150, size=90)  # Average demand of 150 units/day

simulation = vmi.simulate_vmi_performance(
    demand_series, vmi_params, initial_inventory=1500
)

print("VMI Performance Metrics:")
print(f"  Average Inventory: {simulation['performance_metrics']['avg_inventory']:.0f} units")
print(f"  Fill Rate: {simulation['performance_metrics']['fill_rate']:.1f}%")
print(f"  Total Stockouts: {simulation['performance_metrics']['total_stockouts']:.0f} units")
print(f"  Orders Placed: {simulation['performance_metrics']['orders_placed']:.0f}")
print(f"  Average Order Size: {simulation['performance_metrics']['avg_order_size']:.0f} units")

CPFR Implementation

Collaborative Planning Process

class CPFRProgram:
    """Collaborative Planning, Forecasting, and Replenishment program"""

    def __init__(self, buyer_name, supplier_name):
        self.buyer_name = buyer_name
        self.supplier_name = supplier_name
        self.shared_forecast = {}
        self.exceptions = []

    def create_joint_forecast(self, buyer_forecast, supplier_forecast, product_id):
        """
        Create joint forecast from buyer and supplier inputs

        Use weighted average or exception-based consensus
        """

        if len(buyer_forecast) != len(supplier_forecast):
            raise ValueError("Forecast lengths must match")

        joint_forecast = []
        exceptions = []

        for i, (buyer_qty, supplier_qty) in enumerate(zip(buyer_forecast, supplier_forecast)):
            # Calculate variance
            variance_pct = abs(buyer_qty - supplier_qty) / ((buyer_qty + supplier_qty) / 2) * 100 if (buyer_qty + supplier_qty) > 0 else 0

            # If variance > threshold, flag as exception
            if variance_pct > 20:  # 20% threshold
                exceptions.append({
                    'period': i + 1,
                    'buyer_forecast': buyer_qty,
                    'supplier_forecast': supplier_qty,
                    'variance_pct': round(variance_pct, 1),
                    'status': 'Requires Resolution',
                    'consensus_qty': None
                })

                # Use weighted average (60% buyer, 40% supplier) pending resolution
                consensus_qty = int(buyer_qty * 0.6 + supplier_qty * 0.4)
            else:
                # Use weighted average
                consensus_qty = int(buyer_qty * 0.6 + supplier_qty * 0.4)

            joint_forecast.append({
                'period': i + 1,
                'buyer_forecast': buyer_qty,
                'supplier_forecast': supplier_qty,
                'variance_pct': round(variance_pct, 1),
                'consensus_forecast': consensus_qty,
                'has_exception': variance_pct > 20
            })

        self.shared_forecast[product_id] = joint_forecast
        self.exceptions.extend(exceptions)

        return {
            'joint_forecast': pd.DataFrame(joint_forecast),
            'exceptions': pd.DataFrame(exceptions) if exceptions else pd.DataFrame(),
            'forecast_accuracy_alignment': round(100 - variance_pct, 1) if variance_pct < 100 else 0
        }

    def resolve_exception(self, period, consensus_qty, resolution_notes):
        """Resolve forecast exception with agreed quantity"""

        for exception in self.exceptions:
            if exception['period'] == period and exception['status'] == 'Requires Resolution':
                exception['consensus_qty'] = consensus_qty
                exception['status'] = 'Resolved'
                exception['resolution_notes'] = resolution_notes
                exception['resolution_date'] = datetime.now()

                # Update shared forecast
                for product_id, forecast_list in self.shared_forecast.items():
                    for period_forecast in forecast_list:
                        if period_forecast['period'] == period:
                            period_forecast['consensus_forecast'] = consensus_qty
                            break

                return True

        return False

    def calculate_collaboration_benefits(self, baseline_metrics, cpfr_metrics):
        """
        Calculate benefits from CPFR collaboration

        baseline_metrics: Pre-CPFR performance
        cpfr_metrics: Post-CPFR performance
        """

        # Forecast accuracy improvement
        forecast_improvement = cpfr_metrics['forecast_accuracy'] - baseline_metrics['forecast_accuracy']

        # Inventory reduction
        inventory_reduction_pct = (baseline_metrics['avg_inventory'] - cpfr_metrics['avg_inventory']) / baseline_metrics['avg_inventory'] * 100

        # Service level improvement
        service_improvement = cpfr_metrics['fill_rate'] - baseline_metrics['fill_rate']

        # Cost savings
        inventory_cost_rate = 0.25  # 25% annual carrying cost
        inventory_value_reduction = (baseline_metrics['avg_inventory'] - cpfr_metrics['avg_inventory']) * cpfr_metrics['unit_cost']
        annual_savings = inventory_value_reduction * inventory_cost_rate

        # Stockout reduction
        stockout_reduction = baseline_metrics['stockout_events'] - cpfr_metrics['stockout_events']
        stockout_cost_avoided = stockout_reduction * cpfr_metrics['stockout_cost_per_event']

        total_annual_benefit = annual_savings + stockout_cost_avoided

        return {
            'forecast_accuracy_improvement_pts': round(forecast_improvement, 1),
            'inventory_reduction_pct': round(inventory_reduction_pct, 1),
            'inventory_value_reduction': round(inventory_value_reduction, 2),
            'service_level_improvement_pts': round(service_improvement, 1),
            'annual_inventory_savings': round(annual_savings, 2),
            'stockout_cost_avoided': round(stockout_cost_avoided, 2),
            'total_annual_benefit': round(total_annual_benefit, 2)
        }

# Example CPFR implementation
cpfr = CPFRProgram(buyer_name='Acme Corp', supplier_name='Widget Manufacturing')

# Buyer and supplier forecasts for next 12 months
buyer_forecast = [1000, 1100, 1200, 1500, 1800, 1600, 1400, 1300, 1200, 1100, 1000, 950]
supplier_forecast = [1050, 1150, 1100, 1400, 2000, 1650, 1500, 1250, 1200, 1150, 1050, 1000]

# Create joint forecast
joint_forecast_result = cpfr.create_joint_forecast(
    buyer_forecast, supplier_forecast, product_id='PROD001'
)

print("CPFR Joint Forecast:")
print(joint_forecast_result['joint_forecast'][['period', 'buyer_forecast', 'supplier_forecast', 'variance_pct', 'consensus_forecast', 'has_exception']])

print(f"\n\nExceptions Requiring Resolution:")
if not joint_forecast_result['exceptions'].empty:
    print(joint_forecast_result['exceptions'])
else:
    print("None")

# Resolve exception for period 5
cpfr.resolve_exception(
    period=5,
    consensus_qty=1850,
    resolution_notes='Agreed to buyer forecast due to confirmed promotion'
)

# Calculate benefits
baseline = {
    'forecast_accuracy': 70,
    'avg_inventory': 5000,
    'fill_rate': 92,
    'stockout_events': 12
}

cpfr_performance = {
    'forecast_accuracy': 85,
    'avg_inventory': 4200,
    'fill_rate': 96,
    'stockout_events': 4,
    'unit_cost': 50,
    'stockout_cost_per_event': 5000
}

benefits = cpfr.calculate_collaboration_benefits(baseline, cpfr_performance)

print(f"\n\nCPFR Benefits:")
print(f"  Forecast Accuracy Improvement: +{benefits['forecast_accuracy_improvement_pts']} pts")
print(f"  Inventory Reduction: {benefits['inventory_reduction_pct']}%")
print(f"  Service Level Improvement: +{benefits['service_level_improvement_pts']} pts")
print(f"  Annual Inventory Savings: ${benefits['annual_inventory_savings']:,.2f}")
print(f"  Stockout Cost Avoided: ${benefits['stockout_cost_avoided']:,.2f}")
print(f"  Total Annual Benefit: ${benefits['total_annual_benefit']:,.2f}")

Tools & Libraries

Python Libraries

Collaboration Platforms:

  • pandas: Data manipulation
  • numpy: Numerical computations
  • flask / fastapi: API development for portals

Communication:

  • requests: API integration
  • smtplib: Email notifications
  • twilio: SMS alerts

Data Exchange:

  • xml.etree: XML processing for EDI
  • json: JSON data handling
  • ftplib: File transfer

Visualization:

  • matplotlib, plotly: Dashboards
  • dash: Interactive portals

Commercial Software

Supplier Collaboration:

  • SAP Ariba: Supplier network and collaboration
  • Coupa Supplier Portal: Supplier engagement
  • Ivalua: Supplier collaboration
  • Jaggaer: Supplier management

CPFR & Planning:

  • Blue Yonder: Collaborative planning
  • Kinaxis RapidResponse: Collaborative S&OP
  • o9 Solutions: Collaborative planning
  • E2open: Supply chain collaboration

VMI & Replenishment:

  • Blue Yonder (JDA) Replenishment: VMI and auto-replenishment
  • SAP IBP: Integrated planning with VMI
  • Manhattan VMI: Vendor-managed inventory

Communication & Portals:

  • Salesforce: Supplier portal capabilities
  • Microsoft SharePoint: Collaboration workspace
  • Slack: Team communication
  • Microsoft Teams: Collaboration platform

Common Challenges & Solutions

Challenge: Trust and Transparency

Problem:

  • Reluctance to share sensitive data
  • Fear of information misuse
  • Historical adversarial relationships
  • Competitive concerns

Solutions:

  • Start with non-sensitive data (forecasts, not costs)
  • Clear data usage agreements and governance
  • Mutual benefit demonstration
  • Third-party platforms for anonymity
  • Gradual trust building
  • Executive relationship development

Challenge: Technology Integration

Problem:

  • Different systems and platforms
  • Legacy technology limitations
  • IT resource constraints
  • Security concerns

Solutions:

  • API-first approach
  • Cloud-based collaboration platforms
  • EDI for standardized transactions
  • Phased integration roadmap
  • Managed services providers
  • Lightweight tools (portals, spreadsheets)

Challenge: Organizational Alignment

Problem:

  • Internal resistance
  • Misaligned incentives
  • Siloed functions
  • Competing priorities

Solutions:

  • Cross-functional governance
  • Shared KPIs and scorecards
  • Executive sponsorship
  • Change management program
  • Quick wins to build momentum
  • Recognition and rewards

Challenge: Supplier Capability Gaps

Problem:

  • Small suppliers lack sophistication
  • Limited technology access
  • Resource constraints
  • Knowledge gaps

Solutions:

  • Tiered collaboration approach
  • Supplier training and enablement
  • Technology provision (portal access)
  • Simplified processes for small suppliers
  • Phased implementation
  • Shared resources and support

Challenge: Performance Measurement

Problem:

  • Hard to isolate collaboration impact
  • Multiple variables affecting results
  • Different measurement approaches
  • Data availability

Solutions:

  • Baseline before collaboration
  • Control groups where possible
  • Pre/post analysis
  • Clear attribution methodology
  • Regular reviews and adjustments
  • Qualitative and quantitative measures

Challenge: Sustaining Engagement

Problem:

  • Initial enthusiasm wanes
  • Routine tasks neglected
  • Relationship drift
  • Competing priorities

Solutions:

  • Regular structured reviews (quarterly JBPs)
  • Continuous value demonstration
  • Relationship management processes
  • Performance dashboards and visibility
  • Recognition programs
  • Evolution and innovation in partnership

Output Format

Supplier Collaboration Report

Executive Summary:

  • Collaboration program status
  • Key achievements and benefits
  • Active partnerships
  • Investment and ROI

Collaboration Portfolio:

SupplierCollaboration ModelMaturity LevelAnnual SpendBenefits RealizedRelationship Score
Supplier ACPFRLevel 4$5.0M$450K8.5/10
Supplier BVMILevel 3$3.5M$280K7.8/10
Supplier CESILevel 3$2.8M$320K8.2/10
Supplier DJBPLevel 2$2.2M$120K7.0/10

Program Performance:

MetricBaselineCurrentImprovementTarget
Forecast Accuracy68%82%+14 pts85%
Inventory Turns6.28.5+2.39.0
Fill Rate91%96%+5 pts97%
Lead Time28 days21 days-7 days18 days
Supplier On-Time Delivery88%94%+6 pts96%

Benefits Summary:

Benefit CategoryAnnual ValueSource
Inventory Reduction$850KLower safety stock through VMI/CPFR
Improved Service$420KReduced stockouts and expediting
Process Efficiency$230KAutomated replenishment, fewer orders
Innovation Value$500KJoint product development (ESI)
Total$2.0M

Active Initiatives:

InitiativeSupplierStart DateStatusExpected Benefit
CPFR ExpansionSupplier EQ1 2026In Progress$300K/yr
VMI PilotSupplier FQ2 2026Planning$150K/yr
Co-Innovation ProjectSupplier AQ3 2025ActiveTBD
Supplier Training ProgramAllOngoingActiveCapability building

Questions to Ask

If you need more context:

  1. What are the collaboration objectives? (cost, service, innovation, risk)
  2. Which suppliers are targets for collaboration?
  3. What's the current relationship quality and maturity?
  4. What collaboration models are being considered? (VMI, CPFR, ESI, JBP)
  5. What data can be shared with suppliers?
  6. What technology infrastructure exists?
  7. What resources are available for supplier management?
  8. Are there successful collaboration examples to build on?
  9. What are the barriers to collaboration?
  10. How will success be measured?

Related Skills

  • supplier-selection: For identifying strategic collaboration partners
  • supplier-risk-management: For monitoring collaborative supplier risks
  • procurement-optimization: For optimizing collaborative sourcing
  • demand-forecasting: For shared forecasting in CPFR
  • inventory-optimization: For VMI parameter setting
  • contract-management: For collaboration agreements
  • control-tower-design: For supplier visibility integration
  • demand-supply-matching: For collaborative planning processes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.26%
按下载量换算44

Claude

28.94%
按下载量换算36

Cursor

17.13%
按下载量换算21

Gemini CLI

10.49%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills