No description
Find a file
Git Server 857a8c2470 feat: add documentation writing workflow standard
- Add 05-documentation-writing-standard.md for proper documentation organization
- Define decision process for shared vs project-specific documentation
- Include checklist and automation scripts for doc creation
- Update workflows README with new documentation standard
- Ensure consistent documentation structure across all projects

Features:
- Decision algorithm for documentation location
- Standard templates and structure
- Integration with existing workflows
- Automation script for doc creation
- Examples and best practices
2025-11-28 13:02:05 +01:00
docs feat: update workflow management and add EventCalendar project docs 2025-11-28 11:15:45 +01:00
examples feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
scripts feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
templates feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
workflows feat: add documentation writing workflow standard 2025-11-28 13:02:05 +01:00
.gitignore feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
cloud-sync.md feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
init-git-sharing.sh feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
README.md feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
share-to-station.sh feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
sync-docs.sh feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
update-projects.sh feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
UPDATE_SUMMARY.md feat: update workflow management and add EventCalendar project docs 2025-11-28 11:15:45 +01:00
USAGE.md feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00
watch-sync.sh feat: Initial commit - AI Agents Workflows Repository 2025-11-27 18:15:36 +01:00

🤖 AI Agents Workflows

Repository partagé des workflows et documentation pour agents IA.

🎯 Objectif

Centraliser et partager les workflows standards pour le développement avec agents IA, incluant l'intégration Git et Plane.

📂 Structure

AiAgentsWorkflows/
├── workflows/                    # Workflows standards
│   ├── 01-before-feature-standard.md
│   ├── 02-after-feature-standard.md
│   ├── 03-bug-fix-standard.md
│   ├── 05-workflow-management-standard.md
│   └── project-specific/        # Workflows spécifiques par projet
├── docs/                        # Documentation
│   ├── ai-agents/               # Documentation théorique IA
│   │   ├── overview.md          # Types d'agents et architecture
│   │   ├── patterns.md          # Patterns courants (Chain of Thought, etc.)
│   │   └── frameworks.md         # LangChain, AutoGPT, etc.
│   ├── guides/                  # Guides pratiques
│   │   ├── getting-started.md   # Créer son premier agent
│   │   └── workflow-management-guide.md
│   ├── integrations/            # Intégrations
│   │   ├── git-executors-setup.md
│   │   ├── plane-integration.md # ⭐ NEW: Gestion des tâches avec Plane
│   │   └── forgejo-integration.md (archived)
│   └── README.md
├── examples/                    # Exemples pratiques
│   └── code-review-agent.md
├── templates/                   # Templates
│   └── workflow-template.md
└── scripts/                     # Outils d'automatisation
    ├── sync-docs.sh
    ├── watch-sync.sh
    └── update-projects.sh

🚀 Utilisation Rapide

Pour un nouveau projet

  1. Cloner ce repository

    git clone <URL> ai-agents-workflows
    cd ai-agents-workflows
    
  2. Synchroniser les workflows

    ./scripts/update-projects.sh
    
  3. Utiliser les workflows standards

    • Avant de coder: workflows/01-before-feature-standard.md
    • Après avoir codé: workflows/02-after-feature-standard.md

Pour mettre à jour les workflows

  1. Modifier les workflows dans ce repository
  2. Synchroniser les projets
    ./scripts/update-projects.sh
    
  3. Partager les modifications
    git add .
    git commit -m "Update workflows: description des changements"
    git push
    

Fonctionnalités

🔄 Workflows Standards

  • Before Feature: Préparation avec Git + Plane
  • After Feature: Finalisation avec Git + Plane
  • Bug Fix: Processus de correction
  • Pre Commit: Vérifications avant commit

📋 Intégrations

  • Git: Synchronisation complète (pull/push/rebase)
  • Plane: Gestion des tâches et suivi
  • Multi-projets: Synchronisation automatique

🛠️ Outils

  • sync-docs.sh: Synchronisation manuelle
  • watch-sync.sh: Surveillance automatique
  • update-projects.sh: Mise à jour des projets

🤖 Documentation IA

  • AI Agents Overview: Types d'agents et patterns d'architecture
  • Common Patterns: Chain of Thought, Tool Calling, Memory Management
  • Frameworks: Comparaisons LangChain, AutoGPT, Custom Agents
  • Getting Started: Guide pour créer votre premier agent
  • Examples: Agent de code review et autres implémentations

🎯 Workflows Disponibles

01. Before Feature Standard

Préparation avant développement:

  • Synchronisation Git (pull/fetch/rebase)
  • Intégration Plane (tâche + échéances)
  • Planification technique
  • Configuration environnement

02. After Feature Standard

Finalisation après développement:

  • Tests finaux et revue de code
  • Finalisation Git (commit/push/PR)
  • Nettoyage (rebase -i)
  • Mise à jour Plane (statut + leçons)

03. Bug Fix Standard

Processus de correction de bugs:

  • Identification du problème
  • Correction et tests
  • Validation et déploiement

04. Pre Commit Standard

Vérifications avant commit:

  • Tests automatiques
  • Validation du code
  • Documentation

🌐 Partage Multi-Stations

Installation sur une nouvelle station

  1. Cloner le repository

    git clone <URL> /home/user/developpement/AiAGentsWorkflows
    
  2. Synchroniser les projets existants

    cd /home/user/developpement/AiAGentsWorkflows
    ./scripts/update-projects.sh
    
  3. Utiliser les workflows dans chaque projet

Mise à jour entre stations

# Sur la station principale
git add .
git commit -m "Update workflows"
git push

# Sur les autres stations
git pull
./scripts/update-projects.sh

📊 Projets Supportés

  • event-calendar
  • girls-management
  • girls-management-backend
  • girls-management-nextjs
  • Ajoutez facilement vos projets

🤝 Contribution

  1. Fork ce repository
  2. Créez une branche: git checkout -b feature/workflow-amelioration
  3. Modifiez les workflows
  4. Testez: ./scripts/update-projects.sh
  5. Commitez: git commit -m "Improve workflow: description"
  6. Push: git push origin feature/workflow-amelioration
  7. Créez une Pull Request

📄 Licence

MIT License - Utilisez et adaptez librement


Dernière mise à jour: 2025-11-26 Version: 2.0 - Consolidated with ai-agents-docs + Plane integration