[PR #3055] [CLOSED] Claude/multi agent orchestrator sojag #9023

Closed
opened 2026-04-18 23:01:19 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vinta/awesome-python/pull/3055
Author: @AlexanderSmil
Created: 4/12/2026
Status: Closed

Base: masterHead: claude/multi-agent-orchestrator-SOJAG


📝 Commits (9)

  • b862045 docs: add normalized regulation ПЗ.9.4 for TMC nomenclature management
  • c64f9be Merge pull request #1 from AlexanderSmil/claude/analyze-schema-recommendations-9hMj4
  • 7ae52af feat(leela-psychology): complete Leela Quest+Psychology AI v1.1.0
  • 5a7a6c4 chore: add release archive leela_psychology_v1.1.0.tar.gz
  • 93f034e test(leela-psychology): add Flask web API test suite + harden input validation
  • 30db43c feat(leela-psychology): v1.2.0 — EmbeddingSynthesizer, DevOps agent, metrics
  • 3762401 feat(leela-psychology): v1.2.0 finalization — journal, synthesizer wiring, pytest.ini
  • 8c4a7c8 chore(leela-psychology): v1.2.0 packaging — init files, architecture docs, CSS
  • 232793c feat(leela-psychology): v1.3.0 — logging, Makefile, journal export, /health+/metrics tests

📊 Changes

63 files changed (+5180 additions, -0 deletions)

View changed files

REGULATION_PZ9_4.md (+345 -0)
leela_psychology/.env.example (+16 -0)
leela_psychology/.github/workflows/ci.yml (+73 -0)
leela_psychology/.gitignore (+30 -0)
leela_psychology/Dockerfile (+35 -0)
leela_psychology/Makefile (+57 -0)
leela_psychology/__init__.py (+11 -0)
leela_psychology/agents/__init__.py (+1 -0)
leela_psychology/agents/devops/__init__.py (+0 -0)
leela_psychology/agents/devops/health_agent.py (+130 -0)
leela_psychology/agents/feedback/__init__.py (+0 -0)
leela_psychology/agents/feedback/user_feedback_agent.py (+98 -0)
leela_psychology/agents/learning/__init__.py (+0 -0)
leela_psychology/agents/learning/self_learning_agent.py (+119 -0)
leela_psychology/agents/qa/__init__.py (+1 -0)
leela_psychology/agents/qa/base_analyzer.py (+27 -0)
leela_psychology/agents/qa/cbt_analyzer.py (+56 -0)
leela_psychology/agents/qa/freudian_analyzer.py (+58 -0)
leela_psychology/agents/qa/gestalt_analyzer.py (+85 -0)
leela_psychology/agents/qa/jungian_analyzer.py (+76 -0)

...and 43 more files

📄 Description

Project

Project Name

Checklist

  • One project per PR
  • PR title format: Add project-name
  • Entry format: - [project-name](url) - Description ending with period.
  • Description is concise and short

Why This Project Is Awesome

Which criterion does it meet? (pick one)

  • Industry Standard - The go-to tool for a specific use case
  • Rising Star - 5000+ stars in < 2 years, significant adoption
  • Hidden Gem - Exceptional quality, solves niche problems elegantly

Explain:

How It Differs

If similar entries exist, what makes this one unique?


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/vinta/awesome-python/pull/3055 **Author:** [@AlexanderSmil](https://github.com/AlexanderSmil) **Created:** 4/12/2026 **Status:** ❌ Closed **Base:** `master` ← **Head:** `claude/multi-agent-orchestrator-SOJAG` --- ### 📝 Commits (9) - [`b862045`](https://github.com/vinta/awesome-python/commit/b862045acec73e45ef417e150ddc98601b1256d0) docs: add normalized regulation ПЗ.9.4 for TMC nomenclature management - [`c64f9be`](https://github.com/vinta/awesome-python/commit/c64f9be4499a5e5ace0e0e45d25a576c708cae1a) Merge pull request #1 from AlexanderSmil/claude/analyze-schema-recommendations-9hMj4 - [`7ae52af`](https://github.com/vinta/awesome-python/commit/7ae52afd0ae9917c32242e494edbbbe2f86cdb58) feat(leela-psychology): complete Leela Quest+Psychology AI v1.1.0 - [`5a7a6c4`](https://github.com/vinta/awesome-python/commit/5a7a6c4f9433c759979ee597fce4c2c9712fa3e0) chore: add release archive leela_psychology_v1.1.0.tar.gz - [`93f034e`](https://github.com/vinta/awesome-python/commit/93f034edb1402a31cc45e18f5c646f992f2c5a5a) test(leela-psychology): add Flask web API test suite + harden input validation - [`30db43c`](https://github.com/vinta/awesome-python/commit/30db43c88c3e9939941b66dc35f353c196e85637) feat(leela-psychology): v1.2.0 — EmbeddingSynthesizer, DevOps agent, metrics - [`3762401`](https://github.com/vinta/awesome-python/commit/3762401590d0ccd4491294c53c5c57b64de07898) feat(leela-psychology): v1.2.0 finalization — journal, synthesizer wiring, pytest.ini - [`8c4a7c8`](https://github.com/vinta/awesome-python/commit/8c4a7c854f9a089085903fc4b76beaecbce52c84) chore(leela-psychology): v1.2.0 packaging — init files, architecture docs, CSS - [`232793c`](https://github.com/vinta/awesome-python/commit/232793cadd38b0c7c2b0f414ac80f50c1d4d88ba) feat(leela-psychology): v1.3.0 — logging, Makefile, journal export, /health+/metrics tests ### 📊 Changes **63 files changed** (+5180 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `REGULATION_PZ9_4.md` (+345 -0) ➕ `leela_psychology/.env.example` (+16 -0) ➕ `leela_psychology/.github/workflows/ci.yml` (+73 -0) ➕ `leela_psychology/.gitignore` (+30 -0) ➕ `leela_psychology/Dockerfile` (+35 -0) ➕ `leela_psychology/Makefile` (+57 -0) ➕ `leela_psychology/__init__.py` (+11 -0) ➕ `leela_psychology/agents/__init__.py` (+1 -0) ➕ `leela_psychology/agents/devops/__init__.py` (+0 -0) ➕ `leela_psychology/agents/devops/health_agent.py` (+130 -0) ➕ `leela_psychology/agents/feedback/__init__.py` (+0 -0) ➕ `leela_psychology/agents/feedback/user_feedback_agent.py` (+98 -0) ➕ `leela_psychology/agents/learning/__init__.py` (+0 -0) ➕ `leela_psychology/agents/learning/self_learning_agent.py` (+119 -0) ➕ `leela_psychology/agents/qa/__init__.py` (+1 -0) ➕ `leela_psychology/agents/qa/base_analyzer.py` (+27 -0) ➕ `leela_psychology/agents/qa/cbt_analyzer.py` (+56 -0) ➕ `leela_psychology/agents/qa/freudian_analyzer.py` (+58 -0) ➕ `leela_psychology/agents/qa/gestalt_analyzer.py` (+85 -0) ➕ `leela_psychology/agents/qa/jungian_analyzer.py` (+76 -0) _...and 43 more files_ </details> ### 📄 Description ## Project [Project Name](url) ## Checklist - [ ] One project per PR - [ ] PR title format: `Add project-name` - [ ] Entry format: `- [project-name](url) - Description ending with period.` - [ ] Description is concise and short ## Why This Project Is Awesome Which criterion does it meet? (pick one) - [ ] **Industry Standard** - The go-to tool for a specific use case - [ ] **Rising Star** - 5000+ stars in < 2 years, significant adoption - [ ] **Hidden Gem** - Exceptional quality, solves niche problems elegantly Explain: ## How It Differs If similar entries exist, what makes this one unique? --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-18 23:01:19 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-python#9023