llodev
01Plugin Claude Code
Plugin marketplace listing 14 plugins: pm-tasks-core, pm-tasks-trello, pm-tasks-asana, pm-tasks-jira, pm-tasks-linear.
Plugin Claude Code
Plugin marketplace listing 14 plugins: pm-tasks-core, pm-tasks-trello, pm-tasks-asana, pm-tasks-jira, pm-tasks-linear.
Instructions file
Instructions for llodev/skills, covering @llodev/skills — agent guide, universal rules, dev workflow and release convention.
Skill Claude CodeCodex
Design robust Django database schemas with model best practices, migration patterns, and primary key strategy (incremental, UUID, UUIDv7). Use when designing Django models, choosing PK types, writing migrations, or reviewing app schema. Covers Django ORM, PostgreSQL, indexes, constraints, and security considerations…
Skill Claude CodeCodex
Asana adapter for the @llodev/pm-tasks- family. Use when the user mentions Asana, asks to "create Asana task", "publish to Asana", "post to Asana", "publish", "add comment in Asana", or uses --publish-asana; OR for CRUD on existing tasks (check subtask, close task, change due-date, assign person, comment); OR when…
Skill Claude CodeCodex
Placeholder. Will follow the same architecture as pm-tasks-trello and pm-tasks-asana once bitrix24's MCP is integrated. See ../pm-tasks-core/SKILL.md and ../pm-tasks-trello/SKILL.md for the pattern.
Skill Claude CodeCodex
Placeholder. Will follow the same architecture as pm-tasks-trello and pm-tasks-asana once clickup's MCP is integrated. See ../pm-tasks-core/SKILL.md and ../pm-tasks-trello/SKILL.md for the pattern.
Skill Claude CodeCodex
Core extraction + vocabulary for the @llodev/pm-tasks- family. Use when working with any pm-tasks- adapter (Trello, Asana, etc.) — provides Phases 1–3 (identify input, extract structure, build the generic card) plus the canonical CRUD vocabulary (task.create, checklist.check, task.close, task.due-date.set…
Skill Claude CodeCodex
Jira adapter for the @llodev/pm-tasks- family. Use when the user mentions Jira, asks to "create Jira issue", "publish to Jira", "log to Jira", "check subtask in Jira", or uses --publish-jira; OR for CRUD on existing issues (check subtask, close issue, change due-date, assign person, comment, set estimate, set parent)…
Skill Claude CodeCodex
Linear adapter for the @llodev/pm-tasks- family. Use when the user mentions Linear, asks to "create Linear issue", "publish to Linear", "log to Linear", "set cycle/sprint", "check sub-issue", or uses --publish-linear; OR for CRUD on existing issues (check sub-issue, close, due-date, assign, comment, estimate, parent…
Skill Claude CodeCodex
Placeholder. Will follow the same architecture as pm-tasks-trello and pm-tasks-asana once monday's MCP is integrated. See ../pm-tasks-core/SKILL.md and ../pm-tasks-trello/SKILL.md for the pattern.
Skill Claude CodeCodex
Placeholder. Will follow the same architecture as pm-tasks-trello and pm-tasks-asana once notion's MCP is integrated. See ../pm-tasks-core/SKILL.md and ../pm-tasks-trello/SKILL.md for the pattern.
Skill Claude CodeCodex
Placeholder. Will follow the same architecture as pm-tasks-trello and pm-tasks-asana once todoist's MCP is integrated. See ../pm-tasks-core/SKILL.md and ../pm-tasks-trello/SKILL.md for the pattern.
Skill Claude CodeCodex
Trello adapter for the @llodev/pm-tasks- family. Use when the user mentions Trello, asks to "create card", "publish to Trello", "post to Trello", "publish", or uses --publish; OR for CRUD on existing cards (check checklist item, close card, change due-date, add member, comment); OR when invoked autonomously by another…
Skill Claude CodeCodex
Create, review, or guide HTTP controllers in a TypeScript + DDD api. Use when the request involves .controller.ts under apps/api/src/ /presentation/controllers/, route definition, ApiKeyGuard on mutations, ZodValidationPipe against @acme/ -contracts schemas, use case orchestration, mapping Result to HTTP via…
Skill Claude CodeCodex
Create, review, or guide pure Domain Service implementation in a TypeScript + DDD monorepo. Use when the request involves .service.ts files inside apps/api/src/ /domain/services/, domain policies, pure calculations/rules across multiple entities/VOs, naming patterns (Policy, Calculator, Resolver, Specification)…
Skill Claude CodeCodex
Create, review, or guide Data Transfer Objects in a TypeScript + DDD monorepo. Use when the request involves the per-BC contracts package (libs/contracts/ /src/{interfaces,schemas,dtos}/), Zod 4 schemas paired with z.infer DTO types, closed-set values modelled as string-backed XxxEnum (with z.literal(EnumName.X) for…
Skill Claude CodeCodex
Create, review, or guide Domain Entity implementation in a TypeScript + DDD codebase. Use when: the request touches .entity.ts files under apps/api/src/ /domain/entities/ or their tests under apps/api/test/ /domain/entities/; modeling business rules with Entity from @acme/shared (dual API create/tryCreate, Result /…
Skill Claude CodeCodex
Create, review, or guide repository contracts and implementations in a TypeScript + DDD codebase. Use when the request involves .repository.ts files under apps/api/src/ /domain/repositories/ or apps/api/src/ /infra/{firestore,memory}/, persistence operations (save / findBy / list), the REPOSITORY DI token, adapting…
Skill Claude CodeCodex
Create, review, or guide use case (application service) implementation in a TypeScript + DDD codebase. Use when the request involves .usecase.ts files under apps/api/src/ /application/usecases/, application/services/ .service.ts orchestrators, UseCase from @acme/shared, NestJS @Injectable() + @Inject( ) wiring…
Skill Claude CodeCodex
Create, review, or guide Value Object implementation in a TypeScript + DDD codebase. Use when the request involves 'value object', 'VO', .vo.ts files (either shared at libs/shared/src/vo/... or BC-local at apps/api/src/ /domain/value-objects/...), domain attribute validation/normalization, closed-set VOs derived from…
Skill Claude CodeCodex
Create, review, or guide read-side queries in a TypeScript + DDD CQRS codebase. Use when the request involves Query interfaces, .query.ts files, read use cases (find-), DTO projections for API/front consumption, pagination/filters/aggregations, or separating read (query) from write (repository/command).