/install cnc-quote-skill
CNC Quote Skill
Overview
An intelligent CNC machining quotation system that combines rule-based pricing with AI-powered risk detection. Designed for manufacturers, machine shops, and procurement teams.
Key Features
- Smart Quote Engine: Material cost + machining time + surface treatment calculation
- Risk Detection: Automatic flagging of unusual orders (up to 25% risk detection rate)
- Multi-Channel: QQ Bot, Email, and API integration
- RAG-Powered: Hybrid retrieval with 1213 real quote records
- Self-Learning: Continuous improvement from feedback
Installation
# 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 .
Quick Start
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) # []
Use Cases
Case 1: Risk Detection
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
Case 2: Cost Optimization
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
Case 3: Material Suggestion
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
Configuration
Edit config/quote_settings.json:
{
"confidence_threshold": 0.7,
"risk_sensitivity": "high",
"currency": "CNY",
"tax_rate": 0.13,
"channels": ["qq", "email", "api"]
}
API Reference
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
Data Requirements
- Training Data: Minimum 100 historical quotes recommended
- Material Database: Pre-configured with 7 material types
- Surface Treatments: 11 types with pricing rules
Performance Metrics
| Metric | Value |
|---|---|
| Quote Accuracy | 94% (within ±10%) |
| Risk Detection Rate | 25% of orders flagged |
| Average Processing Time | \x3C 2 seconds |
| Supported Materials | 111+ types |
Changelog
v1.0.0 (2026-03-23)
- Initial release
- Core quote engine
- Risk detection module
- Multi-channel integration
License
MIT License - Free for commercial and personal use.
Support
- GitHub Issues: Report a bug
- Email: [email protected]
- QQ: 849355070
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cnc-quote-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/cnc-quote-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Cnc Quote Skill 是什么?
AI-powered CNC machining quote system with risk detection, material optimization, and multi-channel integration. Built for OpenClaw ecosystem. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 80 次。
如何安装 Cnc Quote Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cnc-quote-skill」即可一键安装,无需额外配置。
Cnc Quote Skill 是免费的吗?
是的,Cnc Quote Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Cnc Quote Skill 支持哪些平台?
Cnc Quote Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Cnc Quote Skill?
由 Timo2026(@timo2026)开发并维护,当前版本 v1.0.0。