soulcodex

60 mods across 1 repository, 10 stars between them.

agentic AGENTS.md

01

soulcodex/agentic

Instructions file CodexOpenCode

Instructions for soulcodex/agentic, covering agentic library — agent instructions, what this repo contains, rules for working in this repo, file authoring and skill authoring.

10 yesterday A 1,585 tokens original MIT

compose-agents-md

02

soulcodex/agentic

Skill Claude CodeCodex

Meta-skill: helps create an AGENTS.md for a new project by guiding the user through selecting the right profile from the agentic library and running the compose command. Also helps create a custom AGENTS.md from scratch when no profile fits. Invoked when the user asks to set up agent instructions, create AGENTS.md, or…

10 yesterday A 78 tokens original MIT

configure-mcp

03

soulcodex/agentic

Skill Claude CodeCodex

Guides the user through selecting and configuring an MCP (Model Context Protocol) server for a project. Recommends servers based on the stack, then walks through the just mcp-add wizard. Invoked when the user asks to set up MCP, add a tool integration, or configure external service access for AI agents.

10 yesterday A 68 tokens original MIT

deploy-config

04

soulcodex/agentic

Skill Claude CodeCodex

Meta-skill: deploys the full agentic configuration to a target project — AGENTS.md composition, vendor file generation, and skill deployment — in a single workflow. Invoked when the user asks to deploy or update agent config, sync the agentic setup, or set up agents in a project.

10 yesterday A 64 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Issue-backed plan persistence on GitHub via one managed issue comment with an idempotent marker. Prefers GitHub MCP when available and falls back to gh CLI when MCP is unavailable or misconfigured. Uses local plan persistence only when issue persistence is unavailable or not desired.

10 yesterday A 62 tokens original MIT

memory-continuity

06

soulcodex/agentic

Skill Claude CodeCodex

Preserves cross-session continuity with deterministic MEMORY.md, index.md, and snapshot handoffs under .agentic/memories/.

10 yesterday A 30 tokens original MIT

persist-plan

07

soulcodex/agentic

Skill Claude CodeCodex

Persists the current or completed plan as a structured Markdown file under .agentic/plans/ with a datestamped, slugged filename and registers it in the plans index. Enables multi-agent setups to discover past architectural decisions and plans without re-deriving context. Invoked when the user says "save this plan"…

10 yesterday A 92 tokens original MIT

plan-memory-index

08

soulcodex/agentic

Skill Claude CodeCodex

Maintains concise indexed memory entries for applied plans under .agentic/memories/ with clear boundaries between memory and plan sources. Memory retrieval is prioritized before loading historical plan files.

10 yesterday A 40 tokens original MIT

write-plan

09

soulcodex/agentic

Skill Claude CodeCodex

Automatically persists every plan produced by the agent as a structured Markdown file under .agentic/plans/ with a datestamped slug and updates the plans index. Prevents PLAN.md from being accidentally committed to the repository. Invoked automatically at the end of any planning session — no user prompt required.…

10 yesterday A 84 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Guides aggregate modeling decisions for DDD services: aggregate root boundaries, child entity vs value object decisions, invariants, snapshot/primitives mapping, specification/criteria usage, and repository contract design. Invoked when the user asks to model or refactor domain entities and aggregate behavior.

10 yesterday A 62 tokens original MIT

golang-manual-di

11

soulcodex/agentic

Skill Claude CodeCodex

Guides manual dependency injection wiring for Go services: three-tier naming taxonomy (Provide/MustProvide/Must), Must-pattern entrypoints, OS-signal-driven context lifecycle, common provider structs, infrastructure must-builders, interface-segregated bus registration, decorator/tracing wrappers, and…

10 yesterday A 97 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Implements liveness and readiness health check endpoints following Kubernetes probe conventions. Covers response schema, dependency checks, Kubernetes probe config, and circuit breaker integration. Invoked when the user asks to add health checks, implement a /health endpoint, or set up Kubernetes probes.

10 yesterday A 58 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Guides service boundary analysis, communication pattern selection, data consistency design, API contract strategy, and resilience checklist for microservices systems. Complements the microservices fragment. Invoked when the user asks to design a microservices system, split a monolith, or review service boundaries.

10 yesterday A 61 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Designs a NoSQL data model by leading with access pattern analysis. Covers DynamoDB single-table design (PK/SK/GSI) and MongoDB embedding vs referencing, consistency models, and capacity planning. Invoked when the user asks to design a DynamoDB schema, MongoDB data model, or NoSQL data model.

10 yesterday A 71 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Designs and implements serverless functions: function boundary design, runtime selection, event sources, IAM least privilege, configuration, observability, and cost estimation. Invoked when the user asks to build a serverless function, design a Lambda-based system, or move workloads to serverless.

10 yesterday A 62 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Diagnoses and optimises slow SQL queries using EXPLAIN ANALYZE. Covers identifying bottlenecks (sequential scans, bad estimates, heap fetches), index strategy, query rewrites, and verification. Invoked when the user asks to optimize a query, fix a slow database query, or improve database performance.

10 yesterday A 70 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Gathers inputs, defines initiatives, prioritises with an impact/effort matrix, sequences dependencies, and produces a roadmap table. Invoked when the user asks to plan a technical roadmap, prioritise engineering initiatives, or create a quarter/half-year engineering plan.

10 yesterday A 59 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Structures, writes, and reviews Terraform infrastructure code. Covers module layout, remote state, workspace strategy, variable and secrets handling, CI plan/apply pipeline, naming conventions, and multi-region deployment patterns (provider aliases, per-region state, failover strategies), while delegating shared risk…

10 yesterday A 96 tokens original MIT

webhook-development

19

soulcodex/agentic

Skill Claude CodeCodex

Implements reliable webhook receiving and sending with HMAC signature verification, idempotent processing, retry-with-backoff, and dead-letter handling. Invoked when the user asks to add webhooks, implement a webhook endpoint, or send webhook events to external systems.

10 yesterday A 56 tokens original MIT

json-to-toon

20

soulcodex/agentic

Skill Claude CodeCodex

Transforms JSON input into Token-Oriented Object Notation (TOON) to reduce token consumption in LLM prompts and context windows. Applies the full TOON spec: inline primitive arrays, tabular format for uniform object arrays, and list format for heterogeneous or nested structures. Invoked when the user asks to compress…

10 yesterday A 88 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Designs or reviews a relational database schema for a given domain. Covers table structure, normalization, indexes, constraints, and migration strategy. Invoked when the user asks to design a schema, review a database structure, or optimize a data model.

10 yesterday A 55 tokens original MIT

add-tests

22

soulcodex/agentic

Skill Claude CodeCodex

Generates tests for existing code. Analyzes the target function, method, or class to identify the happy path, error cases, and edge cases, then writes test cases following the project's testing framework and naming conventions. Invoked when the user asks to add tests, write tests, cover code, or increase coverage.

10 yesterday A 67 tokens original MIT

soulcodex/agentic

Skill Claude CodeCodex

Architecture-focused code review covering hexagonal boundary violations, DDD anti-patterns, CQRS misuse, and microservices coupling issues. Applied in addition to the language-specific review skill when architecture markers are detected. Invoked when reviewing hexagonal architectures, DDD patterns, or microservices…

10 yesterday A 63 tokens original MIT

code-review-go

24

soulcodex/agentic

Skill Claude CodeCodex

Deep Go-specific code review covering goroutine lifecycle, data races, error wrapping, domain modeling, and interface design. Applied in addition to the generic code-review skill when Go code is detected. Invoked when reviewing Go PRs, Go code changes, or performing Go-specific quality checks.

10 yesterday A 61 tokens original MIT