-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor Analista Processual Squad: 3-tier architecture with 7 specialized agents #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| """Allow running as: python -m squads.analista-processual""" | ||
| from squads.analista_processual.squad import main | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Useful? React with 👍 / 👎. |
||
|
|
||
| main() | ||
|
Comment on lines
+2
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify which analista-processual package paths actually exist in the repo.
# Expected: the executed package path should match the import target.
fd -t d 'analista[-_]processual' squads
fd -t f '__main__\.py$' squads
fd -t f 'squad\.py$' squads
rg -n 'from squads\.analista_processual\.squad import main|from \.squad import main' squadsRepository: felippepestana/Skill Length of output: 314 Import This entrypoint's directory is Fix-from squads.analista_processual.squad import main
+from .squad import main🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Esta instrução de importação causará um
ImportErrorem tempo de execução. O caminhosquads.analista_processualimplica um diretório chamadoanalista_processual, mas o diretório real no repositório éanalista-processual. Nomes de pacotes Python não podem conter hifens. Para que o módulo possa ser executado compython -m, o diretórioanalista-processualdeve ser renomeado para um nome de pacote válido (por exemplo,analista_processual), e esta instrução de importação provavelmente precisará ser ajustada.