This repository is organized as a Monorepo of Skills for AI agents, supported by a shared Horizontal Core.
/
├── core/ # [HORIZONTAL] Shared cross-skill logic
│ ├── security/ # PII filtering, secret detection
│ ├── logging/ # Standardized JSON audit logging
│ └── auth/ # Patterns for enterprise credentials
├── skills/ # [VERTICALS] Individual tool integrations
│ ├── outline-ops/ # KnowledgeOps Vertical
│ │ ├── SKILL.md # Primary skill definition
│ │ ├── README.md # Skill-specific setup
│ │ └── references/ # API and architectural docs
│ ├── jira-ops/ # ExecutionOps Vertical
│ ├── github-ops/ # QualityOps Vertical
│ └── gitlab-ops/ # QualityOps Vertical
├── playbooks/ # [MULTI-SKILL] Cross-vertical workflows
├── AGENTS.md # Overarching patterns for Paperclip/LLMs
├── CLAUDE.md # Claude Code specific patterns
└── README.md # Project vision and dashboard
Located in /core. This directory contains the "Enterprise Grade" logic that distinguishes this library.
- Goal: Don't repeat yourself (DRY) across skills.
- Logic: Security, Error Handling, Logging, and Formatting.
Located in /skills. Each subdirectory is a self-contained agent skill.
- Goal: High-fidelity interaction with a specific enterprise tool.
- Rule: Every skill must include a
SKILL.md(for the machine) and aREADME.md(for the human).
Located in /playbooks. These are "reciepes" for agents.
- Goal: Describe how to combine multiple skills to solve complex business problems.
- Example: "Syncing Slack transcripts to Outline via the PII Filter."
- When adding a new tool, create a new directory in
skills/. - If you find logic that could be used by other skills, move it to
core/. - Keep the root simple; most of the technical depth should live in the
skills/orcore/folders.