EquilateralAgents - 22 self-learning AI agents with community standards contribution. Features agent memory, pattern recognition, and workflow optimization for security, quality, deployment, and compliance.
npx claudepluginhub equilateral-ai/equilateral-agents-open-coreSelf-learning AI agents that improve over time. Features agent memory (tracks last 100 executions), pattern recognition, community standards contribution, and workflow optimization. Includes security, quality, deployment, infrastructure, and compliance workflows.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
22 self-learning AI agents. Build institutional knowledge that compounds over time. MIT licensed.
Transform your AI coding assistant into a learning system that gets smarter with every mistake you make (and prevents you from making it again).
All standards now use YAML format instead of markdown. This enables machine-readable standards that agents consume directly:
id: lambda-database-standards
category: serverless
priority: 10
rules:
- action: ALWAYS
rule: "Cache single database client at module scope for warm start reuse"
- action: NEVER
rule: "Use connection pools in Lambda - Lambda handles one request at a time"
anti_patterns:
- "Creating new Pool() per invocation"
tags: [lambda, database, cost-optimization]
New core utility that loads YAML standards from a three-layer directory hierarchy:
const { StandardsLoader } = require('equilateral-agents-open-core');
const loader = new StandardsLoader({ projectRoot: process.cwd() });
const all = await loader.loadAll(); // All standards from all layers
const security = await loader.loadByTags(['security']); // Filter by tag
const rules = await loader.getRulesForAgent('SecurityReviewerAgent'); // Agent-specific
Three layers (later overrides earlier):
.standards/yaml/ - Official open standards (submodule).standards-community/ - Community-contributed patterns (submodule).standards-local/ - Your team's conventions (git-ignored)Session memory and standards injection included by default. Closes the loop between YAML standards on disk and enforcement in every AI session:
~/.project-object/{project}/context.md and injects prior session context.standards/yaml/*.yaml, extracts rules, injects as [REQUIRE]/[AVOID]/[PREFER] directivesproject-object sync.standards-local/*.md files to .yaml and convert to YAML schemaStandardsContributor now generates .yaml output.yaml instead of .mdTraditional development:
EquilateralAgents creates a feedback loop:
1. Execute Workflows (agents scan your code)
↓
2. Agent Memory (tracks what worked, what failed)
↓
3. Knowledge Harvest (extract patterns weekly)
↓
4. Create Standards (document "What Happened, The Cost, The Rule")
↓
5. Enforce Standards (AI checks before changes, agents validate)
↓
6. Fewer Incidents (prevent repeating mistakes)
↓
[Loop back to step 1]
Result: Your codebase gets smarter over time. Mistakes happen once, not repeatedly.
Start right from day 1:
Example journey:
Fix systematically, not randomly:
Example journey: