Source

lee-to/ai-factory

50 skills · 2.2K combined installs

Skills from this source

#
Skill
Source
8W Activity
Installs
1
aif-plan Plan a feature or task in fast, full, or ultra mode. Ultra creates an indexed multi-file bundle with deeply specified…
lee-to/ai-factory
99
2
aif-implement Execute implementation tasks from the current plan. Works through tasks sequentially, marks completion, and preserves…
lee-to/ai-factory
92
3
aif-skill-generator Generate professional Agent Skills for AI agents. Creates complete skill packages with SKILL.md, references, scripts,…
lee-to/ai-factory
91
4
aif-improve Refine an existing implementation plan with a second iteration. Re-analyzes the codebase for gaps, missing tasks, and…
lee-to/ai-factory
90
5
aif-security-checklist Security audit checklist based on OWASP Top 10 and best practices. Covers authentication, injection, XSS, CSRF, secre…
lee-to/ai-factory
89
6
aif-evolve Self-improve AI Factory skills based on project context, accumulated patches, and codebase patterns. Analyzes what we…
lee-to/ai-factory
88
7
aif-docs Generate and maintain project documentation. Creates a lean README as a landing page with detailed docs pages split b…
lee-to/ai-factory
87
8
aif Set up agent context for a project. Analyzes tech stack, installs relevant skills from skills.sh, generates custom sk…
lee-to/ai-factory
85
9
aif-commit Create conventional commit messages by analyzing staged changes. Generates semantic commit messages following the Con…
lee-to/ai-factory
85
10
aif-fix Fix a bug or problem. Supports fix-now or plan-first; no args executes FIX_PLAN.md. When a regression check is needed…
lee-to/ai-factory
85
11
aif-review Perform code review on staged changes or a pull request.
lee-to/ai-factory
85
12
aif-roadmap Create or update a project roadmap with major milestones. Generates the configured roadmap artifact (default .ai-fact…
lee-to/ai-factory
84
13
aif-grounded Reliability gate for answers. Forces evidence-based reasoning, explicit uncertainty, and “insufficient information” i…
lee-to/ai-factory
83
14
aif-verify Verify completed implementation against the plan. Checks that all tasks were implemented, nothing was forgotten, code…
lee-to/ai-factory
83
15
aif-best-practices Code quality guidelines and best practices for writing clean, maintainable code. Covers naming, structure, error hand…
lee-to/ai-factory
82
16
aif-rules Add project-specific rules and conventions to the configured RULES.md artifact. Each invocation appends new rules. Th…
lee-to/ai-factory
82
17
aif-build-automation >- Analyze project and generate or enhance build automation file (Makefile, Taskfile.yml, Justfile, Magefile.go). If …
lee-to/ai-factory
81
18
aif-dockerize Analyze project and generate Docker configuration: Dockerfile (multi-stage dev/prod), compose.yml, compose.override.y…
lee-to/ai-factory
79
19
aif-loop Run a strict multi-iteration Reflex Loop with phases (PLAN, PRODUCE||PREPARE, EVALUATE, CRITIQUE, REFINE) to improve …
lee-to/ai-factory
79
20
aif-architecture Generate architecture guidelines for the project. Analyzes tech stack from DESCRIPTION.md, recommends an architecture…
lee-to/ai-factory
78
21
aif-ci Generate CI/CD pipeline (GitHub Actions / GitLab CI) with linting, static analysis, tests, security. Use when user sa…
lee-to/ai-factory
77
22
aif-explore Enter explore mode to investigate ideas, systems, problems, and requirements before planning. Use explicit ultra mode…
lee-to/ai-factory
76
23
aif-qa QA workflow for testing a feature or task implementation. Analyzes changes, produces test plans, and describes concre…
lee-to/ai-factory
61
24
aif-reference Create knowledge references from URLs, documents, or files for use by AI agents. Fetch, process, and store structured…
lee-to/ai-factory
61
25
aif-rules-check Run a standalone read-only rules compliance gate against changed files or a git ref. Use when you need a dedicated pr…
lee-to/ai-factory
58
26
aif-distillation >- Distill books, documents, folders, or URLs into compact, practical Agent Skills. Use when source material should b…
lee-to/ai-factory
35
27
aif-archive Archive completed plans and roadmap milestones. Moves finished plans to the archive directory and optionally trims cl…
lee-to/ai-factory
32
28
aif-qa-check Executes QA test cases created by /aif-qa in human-guided or automated-agent mode, including reusable browser replay …
lee-to/ai-factory
29
29
aif-transfer Transfer reusable prevention lessons from another AI Factory project into the current project's skill-context through…
lee-to/ai-factory
10
30
aif-warmup Load the essential AI Factory project context before work begins. Reads configured DESCRIPTION, ARCHITECTURE, ROADMAP…
lee-to/ai-factory
7
31
ai-factory Set up Claude Code context for a project. Analyzes tech stack, installs relevant skills from skills.sh, generates cus…
lee-to/ai-factory
1
32
ai-factory.architecture Software architecture patterns and guidelines. Covers Clean Architecture, DDD, microservices, monoliths, and how to c…
lee-to/ai-factory
1
33
ai-factory.best-practices Code quality guidelines and best practices for writing clean, maintainable code. Covers naming, structure, error hand…
lee-to/ai-factory
1
34
ai-factory.build-automation Analyze project and generate or enhance build automation file (Makefile, Taskfile.yml, Justfile, Magefile.go). If a b…
lee-to/ai-factory
1
35
ai-factory.ci Generate CI/CD pipeline (GitHub Actions / GitLab CI) with linting, static analysis, tests, security. Use when user sa…
lee-to/ai-factory
1
36
ai-factory.commit Create conventional commit messages by analyzing staged changes. Generates semantic commit messages following the Con…
lee-to/ai-factory
1
37
ai-factory.deploy Prepare and execute deployments with pre-flight checks, release notes generation, and CI/CD integration. NEVER auto-d…
lee-to/ai-factory
1
38
ai-factory.dockerize Analyze project and generate Docker configuration: Dockerfile (multi-stage dev/prod), compose.yml, compose.override.y…
lee-to/ai-factory
1
39
ai-factory.docs Generate and maintain project documentation. Creates a lean README as a landing page with detailed docs/ directory sp…
lee-to/ai-factory
1
40
ai-factory.evolve Self-improve AI Factory skills based on project context, accumulated patches, and codebase patterns. Analyzes what we…
lee-to/ai-factory
1
41
ai-factory.feature End-to-end feature development. Creates git branch, plans implementation via /ai-factory.task, then executes via /ai-…
lee-to/ai-factory
1
42
ai-factory.fix Fix a specific bug or problem in the codebase. Supports two modes - immediate fix or plan-first. Without arguments ex…
lee-to/ai-factory
1
43
ai-factory.implement Execute implementation tasks from the current plan. Works through tasks sequentially, marks completion, and preserves…
lee-to/ai-factory
1
44
ai-factory.improve Refine and enhance an existing implementation plan with a second iteration. Re-analyzes the codebase, checks for gaps…
lee-to/ai-factory
1
45
ai-factory.review Perform code review on staged changes or a pull request. Checks for bugs, security issues, performance problems, and …
lee-to/ai-factory
1
46
ai-factory.security-checklist Security audit checklist based on OWASP Top 10 and best practices. Covers authentication, injection, XSS, CSRF, secre…
lee-to/ai-factory
1
47
ai-factory.skill-generator Generate professional Agent Skills for Claude Code and other AI agents. Creates complete skill packages with SKILL.md…
lee-to/ai-factory
1
48
ai-factory.task Create a step-by-step implementation plan for a feature or task. Breaks down work into actionable tasks tracked via t…
lee-to/ai-factory
1
49
ai-factory.verify Verify completed implementation against the plan. Checks that all tasks were fully implemented, nothing was forgotten…
lee-to/ai-factory
1
50
aif-deploy Prepare and execute deployments with pre-flight checks, release notes generation, and CI/CD integration. NEVER auto-d…
lee-to/ai-factory
1