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.
- helloagents_x-2.2.7/.gitignore +39 -0
- helloagents_x-2.2.7/AGENTS.md +912 -0
- helloagents_x-2.2.7/LICENSE.md +51 -0
- helloagents_x-2.2.7/PKG-INFO +451 -0
- helloagents_x-2.2.7/README.md +440 -0
- helloagents_x-2.2.7/SKILL.md +18 -0
- helloagents_x-2.2.7/helloagents/__init__.py +13 -0
- helloagents_x-2.2.7/helloagents/__main__.py +5 -0
- helloagents_x-2.2.7/helloagents/cli.py +399 -0
- helloagents_x-2.2.7/helloagents/config_helpers.py +271 -0
- helloagents_x-2.2.7/helloagents/functions/auto.md +114 -0
- helloagents_x-2.2.7/helloagents/functions/clean.md +77 -0
- helloagents_x-2.2.7/helloagents/functions/cleanplan.md +91 -0
- helloagents_x-2.2.7/helloagents/functions/commit.md +192 -0
- helloagents_x-2.2.7/helloagents/functions/exec.md +108 -0
- helloagents_x-2.2.7/helloagents/functions/help.md +33 -0
- helloagents_x-2.2.7/helloagents/functions/init.md +119 -0
- helloagents_x-2.2.7/helloagents/functions/plan.md +93 -0
- helloagents_x-2.2.7/helloagents/functions/review.md +105 -0
- helloagents_x-2.2.7/helloagents/functions/rlm.md +296 -0
- helloagents_x-2.2.7/helloagents/functions/rollback.md +123 -0
- helloagents_x-2.2.7/helloagents/functions/status.md +79 -0
- helloagents_x-2.2.7/helloagents/functions/test.md +88 -0
- helloagents_x-2.2.7/helloagents/functions/upgradekb.md +226 -0
- helloagents_x-2.2.7/helloagents/functions/validatekb.md +97 -0
- helloagents_x-2.2.7/helloagents/hooks/claude_code_hooks.json +120 -0
- helloagents_x-2.2.7/helloagents/hooks/codex_cli_hooks.toml +9 -0
- helloagents_x-2.2.7/helloagents/installer.py +437 -0
- helloagents_x-2.2.7/helloagents/interactive.py +253 -0
- helloagents_x-2.2.7/helloagents/rlm/__init__.py +20 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/analyzer.md +66 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/designer.md +95 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/executor.md +45 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/explorer.md +43 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/implementer.md +62 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/kb_keeper.md +128 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/pkg_keeper.md +149 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/researcher.md +45 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/reviewer.md +74 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/synthesizer.md +102 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/tester.md +83 -0
- helloagents_x-2.2.7/helloagents/rlm/roles/writer.md +44 -0
- helloagents_x-2.2.7/helloagents/rlm/schemas/agent_result.json +178 -0
- helloagents_x-2.2.7/helloagents/rlm/session.py +405 -0
- helloagents_x-2.2.7/helloagents/rlm/shared_tasks.py +387 -0
- helloagents_x-2.2.7/helloagents/rules/cache.md +28 -0
- helloagents_x-2.2.7/helloagents/rules/scaling.md +54 -0
- helloagents_x-2.2.7/helloagents/rules/state.md +101 -0
- helloagents_x-2.2.7/helloagents/rules/tools.md +178 -0
- helloagents_x-2.2.7/helloagents/scripts/configure_codex.py +188 -0
- helloagents_x-2.2.7/helloagents/scripts/create_package.py +257 -0
- helloagents_x-2.2.7/helloagents/scripts/list_packages.py +135 -0
- helloagents_x-2.2.7/helloagents/scripts/migrate_package.py +414 -0
- helloagents_x-2.2.7/helloagents/scripts/project_stats.py +417 -0
- helloagents_x-2.2.7/helloagents/scripts/template_utils.py +239 -0
- helloagents_x-2.2.7/helloagents/scripts/upgradewiki.py +395 -0
- helloagents_x-2.2.7/helloagents/scripts/utils.py +418 -0
- helloagents_x-2.2.7/helloagents/scripts/validate_package.py +309 -0
- helloagents_x-2.2.7/helloagents/services/attention.md +74 -0
- helloagents_x-2.2.7/helloagents/services/knowledge.md +259 -0
- helloagents_x-2.2.7/helloagents/services/memory.md +234 -0
- helloagents_x-2.2.7/helloagents/services/package.md +150 -0
- helloagents_x-2.2.7/helloagents/services/templates.md +157 -0
- helloagents_x-2.2.7/helloagents/stages/analyze.md +110 -0
- helloagents_x-2.2.7/helloagents/stages/design.md +145 -0
- helloagents_x-2.2.7/helloagents/stages/develop.md +230 -0
- helloagents_x-2.2.7/helloagents/templates/CHANGELOG.md +24 -0
- helloagents_x-2.2.7/helloagents/templates/CHANGELOG_{YYYY}.md +25 -0
- helloagents_x-2.2.7/helloagents/templates/INDEX.md +46 -0
- helloagents_x-2.2.7/helloagents/templates/archive/_index.md +23 -0
- helloagents_x-2.2.7/helloagents/templates/context.md +82 -0
- helloagents_x-2.2.7/helloagents/templates/modules/_index.md +22 -0
- helloagents_x-2.2.7/helloagents/templates/modules/module.md +35 -0
- helloagents_x-2.2.7/helloagents/templates/plan/proposal.md +104 -0
- helloagents_x-2.2.7/helloagents/templates/plan/tasks.md +46 -0
- helloagents_x-2.2.7/helloagents/templates/session_summary.md +15 -0
- helloagents_x-2.2.7/helloagents/updater.py +442 -0
- helloagents_x-2.2.7/helloagents/user/profile.md +28 -0
- helloagents_x-2.2.7/helloagents/version_check.py +298 -0
- helloagents_x-2.2.7/helloagents/win_helpers.py +254 -0
- 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
|