Official community repository for Tadpole OS. Download, share, and install industry-specific AI Swarm templates to power up your local intelligence engine.
Don't want to start from scratch? Use our Swarm Architect to visually design your intelligence roster, mission, and playbooks.
- Hybrid AI Profiler: Suggests skills based on your company mission.
- One-Click Export: Downloads a production-ready Swarm Archive (.zip).
- Schema Verified: Every template generated is guaranteed to pass the Tadpole OS validation.
AI-Tadpole-OS operates via "Swarms" — interconnected graphs of AI agents, specific skills, and Markdown-based standard operating procedures (workflows).
Instead of configuring dozens of AI agents up manually, you can download a complete Swarm Template tailored exactly to your industry (e.g., Legal, Healthcare, Development).
You can install these directly from your Tadpole OS dashboard!
- Open your AI-Tadpole-OS Dashboard.
- Navigate to Settings -> System Configuration.
- Under the Template Ecosystem panel, click Open Template Store.
- Browse the available industries and click Install Swarm on the template you want.
(The engine will automatically clone the required JSON and Markdown files into your local /data/swarm_config/ vault.)
The repository contains pre-configured templates across 23 industries, with each industry hosting at least two specialized swarm types:
- Knowledge Work Swarms: Focused on research analysis, policy indexing, case law synthesis, and document auditing.
- Edge Operations Swarms: Focused on inventory management, shipping/receiving audits, purchasing/procurement, and ISO 9000 quality assurance.
/
├── digital-marketing/
│ ├── full-funnel-automation/ # A swarm designed for full-funnel marketing
│ ├── seo-indexer/ # [Knowledge] Keyword trend & search intent indexing
│ └── vendor-purchasing/ # [Edge Ops] Ad spend verification & procurement QA
├── legal/
│ ├── contract-review/ # A swarm designed for auditing NDAs
│ ├── precedent-synthesis/ # [Knowledge] Case law precedent research & memorandum drafting
│ └── procurement-qa/ # [Edge Ops] Vendor purchasing audits & SLA compliance
├── manufacturing/
│ ├── design-synthesizer/ # [Knowledge] CAD blueprint parsing & compliance reviews
│ └── iso9000-qa/ # [Edge Ops] Floor inventory auditing & batch QA
└── ... (covering 23 distinct sectors including Healthcare, Finance, HR, and Utilities)
Tadpole OS Swarms can automatically ingest institutional knowledge, playbooks, and corporate SOPs into your local Open Knowledge Foundation (OKF) vector database upon deployment. This enables newly spawned agents to instantly access and conform to your company's official guidelines, documentation, and processes.
Swarm template authors can bundle knowledge assets in two formats:
Add .md files to the /knowledge/ subdirectory within the template. You can include custom YAML frontmatter at the top of each file to capture metadata, which is automatically extracted and indexed:
---
title: Full-Funnel SEO Optimization & Content Strategy Playbook
url: https://confluence.example.com/display/MKT/Full-Funnel+SEO+Playbook
tags: marketing, seo, content, organic
description: A comprehensive playbook detailing organic search strategies.
---
# Full-Funnel SEO Playbook
Body content...Alternatively (or additionally), you can define a knowledge.json file in the root of the template folder containing a structured list of knowledge requests:
[
{
"title": "Full-Funnel SEO Optimization Playbook",
"description": "Organic search guidelines.",
"topic": "marketing",
"concept_type": "playbook",
"resource_uri": "https://confluence.example.com/display/MKT/Full-Funnel+SEO+Playbook",
"tags": "marketing, seo, content",
"text": "Playbook body..."
}
]- Automatic Previews: The Template Store reads your
knowledge.jsonmetadata index, displaying a dedicated Playbooks & Institutional Knowledge panel in the preview modal. Users can review documentation URLs and descriptions prior to deployment. - Resilient Degradation: If vector memory or embedding generation is disabled (e.g., due to
PRIVACY_MODE=trueor missing API keys), the template installation logs a warning but proceeds with the deployment, ensuring zero downtime.
Tadpole OS implements a Zero-Trust Template architecture known as the Sapphire Shield.
- No Executables: Templates only contain declarative
.jsonconfigurations and.mdcontext files. - Overlord Approval: If a template you download requests dangerous capabilities (e.g.,
shell:executeorbudget:spend), the Tadpole OS engine will freeze the swarm and require manual human approval via the React Dashboard before it is allowed to execute. - Bring Your Own Keys: Templates will never contain API keys. If a swarm requires a connection to Jira or Salesforce, you will be prompted to enter your own local credentials upon installation.
We welcome contributions from industry experts! If you have built an incredibly efficient Swarm for your specific business niche, share it with the community.
- Fork this repository.
- Create a new folder under your relevant industry (or create a new industry).
- Ensure your template passes the
SWARM_TEMPLATE_SCHEMA.mdrequirements. - Run the local validator script to audit your template structure:
python validate.py
- Submit a Pull Request! (Our CI/CD pipeline runs this validation on every PR to prevent template regression).
Built for AI-Tadpole-OS.