Hello i really appreciate the button to generate a git commit message is there any possibility to set a prompt ? then i can make AI use a conventional format
Thanks
Hello i really appreciate the button to generate a git commit message is there any possibility to set a prompt ? then i can make AI use a conventional format
Thanks
Yes… I massively direct my bots to document as they go. Here is an example status report as it goes along…
Here is a list of the status report rmds I make it make, as an example on one project:
===
The SwarmHub project is a comprehensive platform for managing AI agents and their interactions within a distributed system. The project encompasses several key components and systems that work together to provide a robust, scalable, and secure environment for AI agent orchestration.
-- Agent management
swarm_hub.agent_profiles
swarm_hub.agent_capabilities
swarm_hub.agent_metrics
-- Project management
swarm_hub.projects
swarm_hub.project_requirements
swarm_hub.project_metrics
-- Task management
swarm_hub.task_queue
swarm_hub.task_executions
swarm_hub.task_metrics
-- Event management
swarm_hub.events
swarm_hub.event_subscriptions
swarm_hub.message_queue
-- Security
swarm_hub.users
swarm_hub.roles
swarm_hub.permissions
-- Performance metrics
swarm_hub.mv_agent_performance_metrics
swarm_hub.mv_project_performance_metrics
swarm_hub.mv_task_performance_metrics
# Branch strategy
main # Production-ready code
development # Integration branch
feature/* # Feature branches
bugfix/* # Bug fix branches
release/* # Release branches
# Version control
git flow init
git flow feature start feature-name
git flow feature finish feature-name
# CI/CD stages
stages:
- test
- build
- deploy
# Testing
test:
script:
- npm install
- npm run test
- npm run lint
# Build
build:
script:
- docker build -t swarm-hub .
- docker push swarm-hub
# Deploy
deploy:
script:
- kubectl apply -f k8s/