#601

Globales Ranking · von 601 Skills

controlplan AI Agent Skill

Quellcode ansehen: robdtaylor/personal-ai-infrastructure

Safe

Installation

npx skills add robdtaylor/personal-ai-infrastructure --skill controlplan

18

Installationen

Personal AI Infrastructure (PAI)

A skills-based context management system for Claude Code. PAI extends Claude Code with domain-specific knowledge, custom workflows, and automated session management - focused on automotive manufacturing operations.

What is PAI?

PAI is a personal AI infrastructure layer that sits on top of Claude Code, providing:

  • Skills System - Modular context packages that load relevant knowledge on-demand
  • Hook System - Event-driven automation for session lifecycle management
  • Memory System - Session history, learnings, and signal capture
  • Custom Commands - Slash commands for common workflows

This repository contains 39 automotive manufacturing skills covering IATF 16949 quality management, CNC operations, damper engineering, business operations, and plant management.

Prerequisites

  • Claude Code CLI installed and authenticated
  • Bun runtime (for hooks and tools)
  • macOS or Linux (Windows via WSL)

Installation

1. Clone the repository

git clone https://github.com/robdtaylor/personal-ai-infrastructure.git ~/.claude

Note: If you already have a ~/.claude directory, back it up first:

mv ~/.claude ~/.claude-backup

2. Copy and configure settings

cd ~/.claude
cp settings.json.template settings.json

Edit settings.json to customize:

  • Environment variables
  • Hook configurations
  • Permission settings

3. Install dependencies

# Install Bun if not already installed
curl -fsSL https://bun.sh/install | bash

# Install hook dependencies
cd ~/.claude/hooks && bun install

4. Verify installation

claude

You should see the PAI context load at session start.

Directory Structure

~/.claude/
├── skills/           # Skill packages (context modules)
│   ├── Pfmea/        # Process FMEA generation
│   ├── Spc/          # Statistical Process Control
│   ├── Cncsetup/     # CNC setup sheets
│   └── ...           # 38 automotive manufacturing skills
├── hooks/            # Event-driven automation
├── commands/         # Custom slash commands
├── bin/              # CLI tools and utilities
├── MEMORY/           # Session history and learnings
└── settings.json     # Claude Code configuration

Skills Included (39)

IATF 16949 Quality Management

Skill Description
Pfmea AIAG-VDA compliant Process FMEAs with S/O/D ratings and RPN calculations
Spc SPC charting, process capability (Cpk/Ppk), control chart interpretation
Msa Gage R&R studies per AIAG MSA manual
Controlplan AIAG-format Control Plans linked to PFMEAs
Eightd 8D problem solving with containment and root cause analysis
Internalaudit IATF 16949 internal audit programme support
A3criticalthinking Toyota-style structured problem solving
Apqpppap APQP phase gates and PPAP 18-element documentation

Manufacturing Operations

Skill Description
Cncsetup Standardized CNC setup sheets (DMG MORI, CITIZEN, MITSUBISHI EDM, Haas)
Cuttingparams Feeds, speeds, and depths of cut for common materials
Plantcapability Machine shop capability checking and machine selection
Maintenancepm Preventive maintenance schedules for shop equipment
Toolcrib Tool inventory management with reorder points
Assemblyoperations LVA and FML assembly guidance (kitting, torque, poka-yoke)
Tribalknowledge Machinist expertise capture and preservation
Quoteestimator Rough cycle time and cost estimation
Skillsmatrix Operator training and competency tracking

Damper Engineering

Skill Description
DamperEngineering Hydraulic damper design - DSSV valves, seals, materials
Damperassembly Dept 71 DSSV damper assembly operations
StructuralFEA Open source FEA structural analysis (CalculiX)

Business Operations

Skill Description
Commercialsales RFQ processing, contract review, customer management
Costengineering Manufacturing cost analysis, make vs buy, value engineering
Supplychain Strategic purchasing, supplier development, materials management
Shippinglogistics UK/US/Canadian shipping, customs, tariffs, HS codes
Sapecc SAP ECC operations (MM, PP, SD, QM, PM, FICO)
Powerplatform Power Automate flow generation from natural language
Msoffice Word/PowerPoint document creation

Management & Strategy

Skill Description
Hoshinkanri Strategic policy deployment (X-Matrix, catchball, bowling charts)
Automotivegm Plant GM / Executive VP operations expertise
Directorofoperations Multi-plant operations leadership perspective
Automotivemanufacturing Manufacturing SOPs and work instructions (IATF 16949/ISO 9001)
Automotiveproductplanning 5-10 year product planning for specialist vehicle manufacturers
Businessstrategy Financial analysis, P&L, valuations, competitive analysis
Healthsafety UK H&S management (risk assessments, COSHH, LOTO)
Ukhradviser UK employment law, ACAS procedures, HR guidance

General Utility

Skill Description
Algorithm Universal 7-phase execution pattern for structured work
Council Multi-perspective deliberation for complex decisions
Manufacturingdemo Demo manufacturing knowledge base
Marketing Marketing content creation and campaign planning for manufacturing businesses

Creating Custom Skills

Skills are modular context packages. Create a new skill:

mkdir -p ~/.claude/skills/MySkill

Create SKILL.md:

---
name: MySkill
description: Brief description. USE WHEN user says 'keyword1', 'keyword2'.
---

# MySkill

## Overview
What this skill does...

## Workflows
- WorkflowName: Description

## Reference
Key information the AI should know...

Regenerate the skill index:

bun run ~/.claude/tools/GenerateSkillIndex.ts

Hooks

PAI uses Claude Code's hook system for automation:

Hook Purpose
SessionStart Load core context, initialize session
PreToolUse Security validation for Bash commands
PostToolUse Capture signals and checkpoints
Stop Capture learnings and session summary

Configure hooks in settings.json.

Custom Commands

Slash commands are defined in ~/.claude/commands/. Example:

# /mycommand

Description of what this command does.

## Instructions

Steps for the AI to follow...

Configuration

Environment Variables

Set in settings.json under env:

{
  "env": {
    "PAI_DIR": "$HOME/.claude",
    "TIME_ZONE": "Europe/London"
  }
}

Troubleshooting

Hooks not running

  1. Check Bun is installed: bun --version
  2. Verify hook paths in settings.json
  3. Check hook file permissions: chmod +x ~/.claude/hooks/*.ts

Skills not loading

  1. Regenerate skill index: bun run ~/.claude/tools/GenerateSkillIndex.ts
  2. Check skill has valid YAML frontmatter in SKILL.md

Contributing

  1. Fork this repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

License

MIT License - See LICENSE file for details.

Acknowledgments

Built for Claude Code by Anthropic.

Installationen

Installationen 18
Globales Ranking #601 von 601

Sicherheitsprüfung

ath Safe
socket Safe
Warnungen: 0 Bewertung: 90
snyk Low
EU EU-Hosted Inference API

Power your AI Agents with the best open-source models.

Drop-in OpenAI-compatible API. No data leaves Europe.

Explore Inference API

GLM

GLM 5

$1.00 / $3.20

per M tokens

Kimi

Kimi K2.5

$0.60 / $2.80

per M tokens

MiniMax

MiniMax M2.5

$0.30 / $1.20

per M tokens

Qwen

Qwen3.5 122B

$0.40 / $3.00

per M tokens

So verwenden Sie diesen Skill

1

Install controlplan by running npx skills add robdtaylor/personal-ai-infrastructure --skill controlplan in your project directory. Führen Sie den obigen Installationsbefehl in Ihrem Projektverzeichnis aus. Die Skill-Datei wird von GitHub heruntergeladen und in Ihrem Projekt platziert.

2

Keine Konfiguration erforderlich. Ihr KI-Agent (Claude Code, Cursor, Windsurf usw.) erkennt installierte Skills automatisch und nutzt sie als Kontext bei der Code-Generierung.

3

Der Skill verbessert das Verständnis Ihres Agenten für controlplan, und hilft ihm, etablierte Muster zu befolgen, häufige Fehler zu vermeiden und produktionsreifen Code zu erzeugen.

Was Sie erhalten

Skills sind Klartext-Anweisungsdateien — kein ausführbarer Code. Sie kodieren Expertenwissen über Frameworks, Sprachen oder Tools, das Ihr KI-Agent liest, um seine Ausgabe zu verbessern. Das bedeutet null Laufzeit-Overhead, keine Abhängigkeitskonflikte und volle Transparenz: Sie können jede Anweisung vor der Installation lesen und prüfen.

Kompatibilität

Dieser Skill funktioniert mit jedem KI-Coding-Agenten, der das skills.sh-Format unterstützt, einschließlich Claude Code (Anthropic), Cursor, Windsurf, Cline, Aider und anderen Tools, die projektbezogene Kontextdateien lesen. Skills sind auf Transportebene framework-agnostisch — der Inhalt bestimmt, für welche Sprache oder welches Framework er gilt.

Data sourced from the skills.sh registry and GitHub. Install counts and security audits are updated regularly.

EU Made in Europe

Chat with 100+ AI Models in one App.

Use Claude, ChatGPT, Gemini alongside with EU-Hosted Models like Deepseek, GLM-5, Kimi K2.5 and many more.

Kundensupport