Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add personamanagmentlayer/pcl --skill manufacturing-expertgit clone --depth 1 https://github.com/personamanagmentlayer/pclWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/personamanagmentlayer/pcl/manufacturing-expert)<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/manufacturing-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/manufacturing-expert/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/manufacturing-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/manufacturing-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk pass
- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00068 | $0.03466 |
| Opus 5 | $0.00034 | $0.01733 |
| Sonnet 5 | $0.00014 | $0.00693 |
| Haiku 4.5 | $0.00007 | $0.00347 |
Grade A, and why
manufacturing-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 488 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Manufacturing Expert
Expert guidance for manufacturing systems, Industry 4.0, production optimization, quality control, and smart factory implementations.
Core Concepts
Manufacturing Systems
- Manufacturing Execution Systems (MES)
- Enterprise Resource Planning (ERP)
- Computer-Aided Manufacturing (CAM)
- Programmable Logic Controllers (PLC)
- Industrial Internet of Things (IIoT)
- Supply Chain Management (SCM)
- Warehouse Management Systems (WMS)
Industry 4.0
- Smart factories
- Digital twins
- Predictive maintenance
- Autonomous robotics
- Augmented reality for operations
- Edge computing
- Cyber-physical systems
Standards and Protocols
- OPC UA (Open Platform Communications)
- ISA-95 (Enterprise-Control System Integration)
- MTConnect (manufacturing data exchange)
- MQTT for IIoT
- EtherCAT (real-time Ethernet)
- PROFINET
- ISO 9001 (Quality Management)
Quality Control System
from scipy import stats
import numpy as np
class StatisticalProcessControl:
"""Statistical Process Control (SPC) for quality management"""
def __init__(self):
self.measurement_history = {}
def calculate_control_limits(self,
measurements: List[float],
sigma_level: float = 3.0) -> dict:
"""Calculate control limits for control charts"""
mean = np.mean(measurements)
std_dev = np.std(measurements, ddof=1)
ucl = mean + (sigma_level * std_dev) # Upper Control Limit
lcl = mean - (sigma_level * std_dev) # Lower Control Limit
return {
'mean': mean,
'std_dev': std_dev,
'ucl': ucl,
'lcl': lcl,
'sigma_level': sigma_level
}
def detect_out_of_control(self,
measurements: List[float],
control_limits: dict) -> dict:
"""Detect out-of-control conditions"""
violations = []
# Rule 1: Point beyond control limits
for i, value in enumerate(measurements):
if value > control_limits['ucl'] or value < control_limits['lcl']:
violations.append({
'rule': 'beyond_limits',
'index': i,
'value': value,
'severity': 'critical'
})
# Rule 2: 2 out of 3 consecutive points beyond 2σ
sigma_2 = control_limits['std_dev'] * 2
ucl_2 = control_limits['mean'] + sigma_2
lcl_2 = control_limits['mean'] - sigma_2
for i in range(len(measurements) - 2):
window = measurements[i:i+3]
beyond_2sigma = sum(1 for v in window if v > ucl_2 or v < lcl_2)
if beyond_2sigma >= 2:
violations.append({
'rule': '2_of_3_beyond_2sigma',
'index': i,
'severity': 'warning'
})
# Rule 3: 9 consecutive points on same side of mean
for i in range(len(measurements) - 8):
window = measurements[i:i+9]
all_above = all(v > control_limits['mean'] for v in window)
all_below = all(v < control_limits['mean'] for v in window)
if all_above or all_below:
violations.append({
'rule': '9_consecutive_same_side',
'index': i,
'severity': 'warning'
})
return {
'in_control': len(violations) == 0,
'violations': violations,
'total_violations': len(violations)
}
def calculate_cpk(self,
measurements: List[float],
lower_spec_limit: float,
upper_spec_limit: float) -> dict:
"""Calculate Process Capability Index (Cpk)"""
mean = np.mean(measurements)
std_dev = np.std(measurements, ddof=1)
# Cp: Process Capability
cp = (upper_spec_limit - lower_spec_limit) / (6 * std_dev)
# Cpk: Process Capability Index (accounts for centering)
cpu = (upper_spec_limit - mean) / (3 * std_dev)
cpl = (mean - lower_spec_limit) / (3 * std_dev)
cpk = min(cpu, cpl)
# Interpret Cpk
if cpk >= 2.0:
capability = "Excellent"
elif cpk >= 1.33:
capability = "Adequate"
elif cpk >= 1.0:
capability = "Marginal"
else:
capability = "Inadequate"
return {
'cp': cp,
'cpk': cpk,
'cpu': cpu,
'cpl': cpl,
'capability': capability,
'sigma_level': cpk * 3 if cpk > 0 else 0
}
def perform_gage_rr(self,
measurements: np.ndarray,
n_parts: int,
n_operators: int,
n_trials: int) -> dict:
"""Perform Gage Repeatability and Reproducibility study"""
# Reshape data: (parts × operators × trials)
data = measurements.reshape(n_parts, n_operators, n_trials)
# Calculate variance components
part_means = data.mean(axis=(1, 2))
operator_means = data.mean(axis=(0, 2))
overall_mean = data.mean()
# Part variation
part_variance = np.var(part_means, ddof=1)
# Repeatability (equipment variation)
within_operator_variance = np.mean([
np.var(data[:, op, :], ddof=1)
for op in range(n_operators)
])
# Reproducibility (operator variation)
operator_variance = np.var(operator_means, ddof=1)
# Total variation
total_variance = np.var(data, ddof=1)
# Gage R&R
gage_rr = within_operator_variance + operator_variance
gage_rr_percentage = (gage_rr / total_variance) * 100
# Interpretation
if gage_rr_percentage < 10:
assessment = "Acceptable"
elif gage_rr_percentage < 30:
assessment = "Marginal"
else:
assessment = "Unacceptable"
return {
'gage_rr_percentage': gage_rr_percentage,
'repeatability_percentage': (within_operator_variance / total_variance) * 100,
'reproducibility_percentage': (operator_variance / total_variance) * 100,
'part_variation_percentage': (part_variance / total_variance) * 100,
'assessment': assessment
}
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago Changed · -243 lines · +42 tokens per session 9d01f2000ac2
- 7d ago First seen · 731 lines · 26 tokens per session scan A 32e8c950e895
manufacturing-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed yesterday), licensed Apache-2.0. It adds 68 tokens to every session and 3,466 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
clawrouter
Hosted-gateway LLM router — save 84% on inference costs. A local proxy that forwards each request to the blockrun.ai gateway, which routes to the cheapest capable model across 78 models from OpenAI, Anthropic, Google, DeepSeek, xAI, Z.AI, and more. 7 free open-weight models included. Also exposes realtime market data…
surf
Use this skill — NOT browser or webfetch — for ALL Surf crypto-data calls. 83 endpoints at localhost:8402/v1/surf/ covering CEX/DEX markets, on-chain SQL over 80+ ClickHouse tables (Ethereum, Base, Arbitrum, BSC, TRON, HyperEVM, Tempo), 100M+ labeled wallets, prediction markets (Polymarket + Kalshi), social/CT…
phone
Verify phone numbers (carrier + SIM-swap fraud signals) and place AI-powered outbound voice calls via BlockRun's gateway (Twilio + Bland.ai). Trigger when the user asks to look up a number, check fraud risk, buy/rent a phone number, or place an AI voice call. Payment is automatic via x402 from the wallet.
imagegen
Generate or edit images via BlockRun's image API. Trigger when the user asks to generate, create, draw, make an image — or to edit, modify, change, or retouch an existing image.
polymarket-trading
Use when the user wants to actually PLACE, manage, or redeem bets on Polymarket (not just read odds — that's the blockrunpredexon data tools). Covers setup (deposit wallet, funding, approvals), buy/sell with confirm gating, positions, redeeming winnings, geoblock handling, and the end-to-end flow.
release
Use this skill for EVERY ClawRouter release. Enforces the full checklist — version sync, CHANGELOG, build, tests, npm publish, git tag, GitHub release. No step can be skipped.