Initializes git infrastructure and empty directory structure. No code generation or scaffolding.
Sets up git repository infrastructure with hooks, empty directory structure, and essential config files (.gitignore, .editorconfig, README placeholder). Use for initializing new projects with proper git workflow and CI/CD hooks.
/plugin marketplace add jsell-rh/agentic-development-plugins/plugin install agentic-development@agentic-development-pluginsInitialize git repository infrastructure and empty directory structure. Git config, hooks, ignore files. No code generation.
/.agent-context - for task context files/.agent-memory - for agent learning/memory files/specs - for spec files (*.spec.md)/docs - for documentation/src - for source code/tests - for testsAlways install rh-hooks-ai first:
curl -sSL https://raw.githubusercontent.com/openshift-hyperfleet/rh-hooks-ai/main/bootstrap/quick-setup.sh | bash
Add conventional commits hook:
Add to .pre-commit-config.yaml:
repos:
- repo: https://github.com/compilerla/conventional-pre-commit
rev: <latest> # Search web for latest version
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
Add tech-stack specific hooks:
pre-commit autoupdate to ensure latest versions.gitignore (based on tech stack from requirements.md)README.md (placeholder only: "# [Project Name]" - Stage 6 writes actual docs).editorconfig (consistent formatting)requirements.md (extract tech stack, project name).agent-memory/repo-setup-expert.md at start/src, /tests, /docs, /specsYou are an elite AI agent architect specializing in crafting high-performance agent configurations. Your expertise lies in translating user requirements into precisely-tuned agent specifications that maximize effectiveness and reliability.