Install
openclaw skills install @timo2026/cnc-quote-skillAI-powered CNC machining quote system with risk detection, material optimization, and multi-channel integration. Built for OpenClaw ecosystem.
openclaw skills install @timo2026/cnc-quote-skillAn intelligent CNC machining quotation system that combines rule-based pricing with AI-powered risk detection. Designed for manufacturers, machine shops, and procurement teams.
# Via ClawHub
openclaw skill install cnc-quote-skill
# Or from source
git clone https://github.com/openclaw-community/cnc-quote-skill.git
cd cnc-quote-skill
openclaw skill install .
from cnc_quote_skill import QuoteEngine
# Initialize engine
engine = QuoteEngine()
# Create a quote request
quote = engine.calculate({
"material": "AL6061",
"dimensions": {"length": 100, "width": 50, "height": 20},
"surface_treatment": "anodizing",
"quantity": 100,
"urgency": "normal"
})
print(quote.total_price) # ¥310.11
print(quote.confidence) # 0.96
print(quote.risk_flags) # []
Scenario: A customer requests an unusual combination of surface treatments.
Input: Anodizing + Chrome Plating (incompatible)
Output: ⚠️ RISK FLAGGED - Surface treatment conflict detected
Recommended: Manual review required
Scenario: Bulk order with complex geometry.
Input: 1000 units, complex 5-axis machining
Output: ✓ Optimized quote with bulk discount (15% off)
Suggested: Batch processing for 20% additional savings
Scenario: Customer requests generic "steel" material.
Input: Steel, outdoor application
Output: 💡 Suggestion: 304 Stainless Steel recommended
Reason: Better corrosion resistance for outdoor use
Price difference: +12%, but saves maintenance costs
Edit config/quote_settings.json:
{
"confidence_threshold": 0.7,
"risk_sensitivity": "high",
"currency": "CNY",
"tax_rate": 0.13,
"channels": ["qq", "email", "api"]
}
QuoteEngine.calculate(order_details)Calculate quote for a machining order.
Parameters:
material (str): Material type (e.g., "AL6061", "SUS304")dimensions (dict): Length, width, height in mmsurface_treatment (str): Surface treatment typequantity (int): Order quantityurgency (str): "normal", "urgent", "rush"Returns:
total_price (float): Total quote amountbreakdown (dict): Itemized costsconfidence (float): Quote confidence (0-1)risk_flags (list): Risk warningssuggestions (list): Optimization suggestions| Metric | Value |
|---|---|
| Quote Accuracy | 94% (within ±10%) |
| Risk Detection Rate | 25% of orders flagged |
| Average Processing Time | < 2 seconds |
| Supported Materials | 111+ types |
MIT License - Free for commercial and personal use.