helloagents-x 2.2.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. helloagents_x-2.2.7/.gitignore +39 -0
  2. helloagents_x-2.2.7/AGENTS.md +912 -0
  3. helloagents_x-2.2.7/LICENSE.md +51 -0
  4. helloagents_x-2.2.7/PKG-INFO +451 -0
  5. helloagents_x-2.2.7/README.md +440 -0
  6. helloagents_x-2.2.7/SKILL.md +18 -0
  7. helloagents_x-2.2.7/helloagents/__init__.py +13 -0
  8. helloagents_x-2.2.7/helloagents/__main__.py +5 -0
  9. helloagents_x-2.2.7/helloagents/cli.py +399 -0
  10. helloagents_x-2.2.7/helloagents/config_helpers.py +271 -0
  11. helloagents_x-2.2.7/helloagents/functions/auto.md +114 -0
  12. helloagents_x-2.2.7/helloagents/functions/clean.md +77 -0
  13. helloagents_x-2.2.7/helloagents/functions/cleanplan.md +91 -0
  14. helloagents_x-2.2.7/helloagents/functions/commit.md +192 -0
  15. helloagents_x-2.2.7/helloagents/functions/exec.md +108 -0
  16. helloagents_x-2.2.7/helloagents/functions/help.md +33 -0
  17. helloagents_x-2.2.7/helloagents/functions/init.md +119 -0
  18. helloagents_x-2.2.7/helloagents/functions/plan.md +93 -0
  19. helloagents_x-2.2.7/helloagents/functions/review.md +105 -0
  20. helloagents_x-2.2.7/helloagents/functions/rlm.md +296 -0
  21. helloagents_x-2.2.7/helloagents/functions/rollback.md +123 -0
  22. helloagents_x-2.2.7/helloagents/functions/status.md +79 -0
  23. helloagents_x-2.2.7/helloagents/functions/test.md +88 -0
  24. helloagents_x-2.2.7/helloagents/functions/upgradekb.md +226 -0
  25. helloagents_x-2.2.7/helloagents/functions/validatekb.md +97 -0
  26. helloagents_x-2.2.7/helloagents/hooks/claude_code_hooks.json +120 -0
  27. helloagents_x-2.2.7/helloagents/hooks/codex_cli_hooks.toml +9 -0
  28. helloagents_x-2.2.7/helloagents/installer.py +437 -0
  29. helloagents_x-2.2.7/helloagents/interactive.py +253 -0
  30. helloagents_x-2.2.7/helloagents/rlm/__init__.py +20 -0
  31. helloagents_x-2.2.7/helloagents/rlm/roles/analyzer.md +66 -0
  32. helloagents_x-2.2.7/helloagents/rlm/roles/designer.md +95 -0
  33. helloagents_x-2.2.7/helloagents/rlm/roles/executor.md +45 -0
  34. helloagents_x-2.2.7/helloagents/rlm/roles/explorer.md +43 -0
  35. helloagents_x-2.2.7/helloagents/rlm/roles/implementer.md +62 -0
  36. helloagents_x-2.2.7/helloagents/rlm/roles/kb_keeper.md +128 -0
  37. helloagents_x-2.2.7/helloagents/rlm/roles/pkg_keeper.md +149 -0
  38. helloagents_x-2.2.7/helloagents/rlm/roles/researcher.md +45 -0
  39. helloagents_x-2.2.7/helloagents/rlm/roles/reviewer.md +74 -0
  40. helloagents_x-2.2.7/helloagents/rlm/roles/synthesizer.md +102 -0
  41. helloagents_x-2.2.7/helloagents/rlm/roles/tester.md +83 -0
  42. helloagents_x-2.2.7/helloagents/rlm/roles/writer.md +44 -0
  43. helloagents_x-2.2.7/helloagents/rlm/schemas/agent_result.json +178 -0
  44. helloagents_x-2.2.7/helloagents/rlm/session.py +405 -0
  45. helloagents_x-2.2.7/helloagents/rlm/shared_tasks.py +387 -0
  46. helloagents_x-2.2.7/helloagents/rules/cache.md +28 -0
  47. helloagents_x-2.2.7/helloagents/rules/scaling.md +54 -0
  48. helloagents_x-2.2.7/helloagents/rules/state.md +101 -0
  49. helloagents_x-2.2.7/helloagents/rules/tools.md +178 -0
  50. helloagents_x-2.2.7/helloagents/scripts/configure_codex.py +188 -0
  51. helloagents_x-2.2.7/helloagents/scripts/create_package.py +257 -0
  52. helloagents_x-2.2.7/helloagents/scripts/list_packages.py +135 -0
  53. helloagents_x-2.2.7/helloagents/scripts/migrate_package.py +414 -0
  54. helloagents_x-2.2.7/helloagents/scripts/project_stats.py +417 -0
  55. helloagents_x-2.2.7/helloagents/scripts/template_utils.py +239 -0
  56. helloagents_x-2.2.7/helloagents/scripts/upgradewiki.py +395 -0
  57. helloagents_x-2.2.7/helloagents/scripts/utils.py +418 -0
  58. helloagents_x-2.2.7/helloagents/scripts/validate_package.py +309 -0
  59. helloagents_x-2.2.7/helloagents/services/attention.md +74 -0
  60. helloagents_x-2.2.7/helloagents/services/knowledge.md +259 -0
  61. helloagents_x-2.2.7/helloagents/services/memory.md +234 -0
  62. helloagents_x-2.2.7/helloagents/services/package.md +150 -0
  63. helloagents_x-2.2.7/helloagents/services/templates.md +157 -0
  64. helloagents_x-2.2.7/helloagents/stages/analyze.md +110 -0
  65. helloagents_x-2.2.7/helloagents/stages/design.md +145 -0
  66. helloagents_x-2.2.7/helloagents/stages/develop.md +230 -0
  67. helloagents_x-2.2.7/helloagents/templates/CHANGELOG.md +24 -0
  68. helloagents_x-2.2.7/helloagents/templates/CHANGELOG_{YYYY}.md +25 -0
  69. helloagents_x-2.2.7/helloagents/templates/INDEX.md +46 -0
  70. helloagents_x-2.2.7/helloagents/templates/archive/_index.md +23 -0
  71. helloagents_x-2.2.7/helloagents/templates/context.md +82 -0
  72. helloagents_x-2.2.7/helloagents/templates/modules/_index.md +22 -0
  73. helloagents_x-2.2.7/helloagents/templates/modules/module.md +35 -0
  74. helloagents_x-2.2.7/helloagents/templates/plan/proposal.md +104 -0
  75. helloagents_x-2.2.7/helloagents/templates/plan/tasks.md +46 -0
  76. helloagents_x-2.2.7/helloagents/templates/session_summary.md +15 -0
  77. helloagents_x-2.2.7/helloagents/updater.py +442 -0
  78. helloagents_x-2.2.7/helloagents/user/profile.md +28 -0
  79. helloagents_x-2.2.7/helloagents/version_check.py +298 -0
  80. helloagents_x-2.2.7/helloagents/win_helpers.py +254 -0
  81. helloagents_x-2.2.7/pyproject.toml +33 -0
@@ -0,0 +1,39 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # Distribution / packaging
8
+ dist/
9
+ build/
10
+ *.egg-info/
11
+ *.egg
12
+
13
+ # Virtual environments
14
+ .env
15
+ .venv/
16
+ env/
17
+ venv/
18
+
19
+ # IDE
20
+ .vscode/
21
+ .idea/
22
+ *.swp
23
+ *.swo
24
+
25
+ # Python caches
26
+ .pytest_cache/
27
+ .mypy_cache/
28
+ .ruff_cache/
29
+
30
+ # Node
31
+ node_modules/
32
+
33
+ # OS
34
+ .DS_Store
35
+ Thumbs.db
36
+ COMMIT_MESSAGE.md
37
+ .claude/settings.local.json
38
+ %TEMP%updater_committed.py
39
+ nul