higpertext-cli 0.8.0__tar.gz → 0.8.4__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.
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/PKG-INFO +4 -1
- higpertext_cli-0.8.4/README.md +112 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/pyproject.toml +5 -2
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/adapters_config.json +9 -9
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/app_config.json +15 -8
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/hooks/custom/test_output_limiter.json +1 -1
- higpertext_cli-0.8.4/src/config/hooks/custom/test_output_limiter.py +140 -0
- higpertext_cli-0.8.4/src/config/profiles/agent_designer.json +57 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/profiles/base_agent.json +3 -2
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/profiles/global.json +6 -3
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/router_content.json +12 -1
- higpertext_cli-0.8.4/src/config/templates/pr_peer_review.md +33 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/__init__.py +4 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/adapter_utils.py +19 -7
- higpertext_cli-0.8.4/src/higpertext/adapters/antigravity_adapter/__init__.py +1 -0
- higpertext_cli-0.8.4/src/higpertext/adapters/antigravity_adapter/antigravity_adapter.py +63 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/claude_adapter/claude_adapter.py +3 -9
- higpertext_cli-0.8.4/src/higpertext/adapters/codex_adapter/__init__.py +1 -0
- higpertext_cli-0.8.4/src/higpertext/adapters/codex_adapter/codex_adapter.py +92 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/copilot_adapter/copilot_adapter.py +3 -3
- higpertext_cli-0.8.4/src/higpertext/adapters/gemini_adapter/gemini_adapter.py +176 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/open_code_adapter/open_code_adapter.py +8 -8
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/capabilities_runner.py +66 -57
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/agents}/agent-builder.json +3 -3
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/agents}/agent-sync.json +1 -1
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/agents/subagent-executor.json +43 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/agents}/sync-agents.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/context}/code-skeletonizer.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/context}/context-assembler.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/context}/context-budget-report.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/context}/error-context-locator.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/context}/file-map.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/context}/smart-read.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/environment}/env-catalog.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/environment}/env-clean.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/environment}/env-logs.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/environment}/env-runner.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/environment}/env-status.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/environment}/env-stop.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/environment}/env-template.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/governance}/governance-exception.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/governance}/list-rules.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/governance}/load-rules.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/governance}/memory-manager.json +1 -1
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/governance/truth-keeper.json +51 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions}/knowledge-asker.json +2 -2
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions}/quality-updater.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/reports}/commit-report.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/reports}/efficiency-meter.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/reports}/quality-scan.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/reports}/report-viewer.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/reports}/roadmap-report.json +4 -4
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/reports}/telemetry-report.json +1 -1
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/reports/training-recommender.json +23 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/graph-query.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/graph-rebuild.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/graph-visualize.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/grep-search.json +9 -3
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/rag-index.json +4 -2
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/search-router.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/semantic-diff.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/search}/semantic-search.json +3 -2
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/session}/doctor.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/session}/hook-health.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/session}/hook-sync-check.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/session}/hooks-manager.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/session}/session-clean.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/session}/session-start.json +2 -2
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/system}/dep-manager.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/system}/docs-sync.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/system}/eval-agent.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/system}/higpertext-tester.json +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/system}/llm-invoke.json +1 -1
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/system/project-explainer.json +31 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common → higpertext_cli-0.8.4/src/higpertext/capabilities/common/definitions/system}/task-decomposer.json +3 -3
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/__init__.py +17 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/agents}/subagent_executor.py +63 -3
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/agents}/sync_agents.py +80 -108
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/context}/file_map.py +21 -4
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/context}/smart_read.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/_env_cli.py +0 -3
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/env_catalog.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/env_clean.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/env_logs.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/env_runner.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/env_status.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/env_stop.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/environment}/env_template.py +1 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/governance}/list_rules.py +10 -7
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/governance/truth_keeper.py +135 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports}/commit_report.py +6 -8
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports}/report_viewer.py +1 -1
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports/roadmap_report.py +128 -0
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports/training_recommender.py +35 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/grep_search.py +7 -2
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/rag_index.py +2 -2
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/semantic_search.py +2 -2
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/session}/doctor.py +6 -3
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/session}/hook_health.py +11 -10
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/session}/hook_sync_check.py +2 -1
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/session}/session_control.py +6 -3
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/system}/docs_sync.py +30 -27
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/system}/llm_invoke.py +2 -2
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/system/project_explainer.py +137 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/system}/task_decomposer.py +6 -2
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/doctor.py +6 -0
- higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/hooks_manager.py +6 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/bash_rules.py +5 -9
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/session_rules.py +37 -19
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/telemetry_rules.py +1 -1
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_io.py +2 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_utils.py +9 -20
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/app_config.py +5 -5
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/context_engine.py +24 -0
- higpertext_cli-0.8.4/src/higpertext/kernel/application/embedding_factory.py +23 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/environment_manager.py +32 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/hook_registry.py +27 -13
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/hook_renderer.py +43 -14
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/rag_service.py +33 -8
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/roadmap_reporter.py +6 -1
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/semantic_engine.py +2 -2
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/telemetry.py +41 -42
- higpertext_cli-0.8.4/src/higpertext/kernel/application/training_recommender.py +133 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/config_paths.py +38 -9
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/context_engine.py +26 -1
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/profile_learner.py +2 -5
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/engine.py +1 -1
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/htx_resolver.py +4 -12
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/capability_command_builder.py +2 -10
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/capability_task_service.py +24 -4
- higpertext_cli-0.8.4/src/higpertext/kernel/infrastructure/cli/completion.py +84 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/parser_builder.py +14 -2
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/profile_commands.py +1 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/roadmap_commands.py +18 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/router.py +148 -26
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/database/local_vector_store.py +8 -1
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/deployment/resource_deployer.py +9 -2
- higpertext_cli-0.8.4/src/higpertext/kernel/infrastructure/llm/providers/local_embeddings.py +43 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/semantic_graph.py +3 -3
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/telemetry_reporter.py +1 -12
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/session_manager.py +37 -6
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/markdown/commit_report.md +3 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/markdown/roadmap_report.md +4 -3
- higpertext_cli-0.8.4/src/higpertext/templates/skills/agent-builder-guide/skill.json +6 -0
- higpertext_cli-0.8.4/src/higpertext/templates/skills/agent-design-standards/skill.json +6 -0
- higpertext_cli-0.8.4/src/higpertext/templates/skills/best-practices/skill.json +6 -0
- higpertext_cli-0.8.4/src/higpertext/templates/skills/capability-validator/skill.json +6 -0
- higpertext_cli-0.8.4/src/higpertext/templates/skills/higpertext-guide/skill.json +6 -0
- higpertext_cli-0.8.4/src/higpertext/templates/subagents/architect.json +27 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/workflows/plan.json +12 -14
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext_cli.egg-info/PKG-INFO +4 -1
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext_cli.egg-info/SOURCES.txt +122 -98
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext_cli.egg-info/requires.txt +4 -0
- higpertext_cli-0.8.0/README.md +0 -160
- higpertext_cli-0.8.0/src/config/profiles/software_developer.json +0 -23
- higpertext_cli-0.8.0/src/higpertext/adapters/gemini_adapter/gemini_adapter.py +0 -211
- higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts/roadmap_report.py +0 -73
- higpertext_cli-0.8.0/src/higpertext/capabilities/common/subagent-executor.json +0 -25
- higpertext_cli-0.8.0/src/higpertext/templates/workflows/compact.json +0 -21
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/MANIFEST.in +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/requirements.txt +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/setup.cfg +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/setup.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/antigravity_agent_template.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/context_engine.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/environments/model_defaults.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/governance/branching_strategy.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/governance/deployment_gates.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/governance/guidelines_contract.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/governance/quality_gates.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/governance/section_rules.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/governance/security_guardrails.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/hooks/README.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/hooks/global/session_prompt.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/htx_config.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/profile_learner.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/profiles/base_auditor.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/profiles/base_developer.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/profiles/base_operator.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/semantic_graph.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/ado_release_flow.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/docs-update.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/governance-check.yaml +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/guidelines-sync.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/higpertext-build.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/higpertext-plan.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/higpertext-review.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/pr-quality-check.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/workflows/quality-remediation.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/claude_adapter/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/copilot_adapter/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/gemini_adapter/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/llm_formatter.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/adapters/open_code_adapter/__init__.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/agents}/agent_builder.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/agents}/agent_sync.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/context}/code_skeletonizer.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/context}/context_assembler.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/context}/context_budget_report.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/context}/error_context_locator.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/governance}/ask_higpertext.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/governance}/governance_exception.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/governance}/load_rules.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/governance}/memory_manager.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports}/efficiency_meter.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports}/presentation_engine.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports}/quality_scan.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/reports}/telemetry_report.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/graph_query.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/graph_rebuild.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/graph_visualize.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/search_router.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/search}/semantic_diff.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/session}/hooks_manager.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/system}/dep_manager.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/system}/eval_agent.py +0 -0
- {higpertext_cli-0.8.0/src/higpertext/capabilities/common/scripts → higpertext_cli-0.8.4/src/higpertext/capabilities/common/scripts/core/system}/higpertext_tester.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/committer.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/diff.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/ls-files.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/rm.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/scripts/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/scripts/commit_changes.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/scripts/git_diff.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/scripts/git_ls_files.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/git/scripts/git_rm.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/security/k8s-auditor.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/security/scripts/k8s_auditor.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/security/scripts/secret_scanner.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/capabilities/security/secret-scanner.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/_compat.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/context_engine_rule.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/context_rules.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/governance_adapter.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/profile_rules.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/quality_rules.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/_rules/security_rules.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/audit_logger_hook.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_bash_guard.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_code_quality.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_context_hint.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_context_manager.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_loop_guard.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_post_observer.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_read_guard.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_security_guard.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_session_prompt.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/hook_session_stop.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/session_guard_hook.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/telemetry_utils.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/test_echo_hook.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/webhook_hook.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hook_tasks/workflow_runner_hook.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/hooks/hooks_catalog.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/_compat.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/agent_registry.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/capability_manager.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/commit_reporter.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/context_builder.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/engine.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/env_runtime.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/governance.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/ports.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/profile_learner.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/profile_service.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/profile_services.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/profile_use_cases.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/session_services.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/skill_hook_compiler.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/application/workflow_manager.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/agent_registry.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/commit_reporter.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/compilers.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/entities.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/env_runtime.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/governance.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/hook_models.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/rag.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/repositories.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/roadmap_reporter.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/domain/semantic_engine.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/agent_registry.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cache/capability_cache.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/capability_helper.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/agent_commands.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/arguments.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/cli_search.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/parameter_contracts.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/session_commands.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/task_commands.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/task_result_reporter.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/cli/workflow_commands.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/compilers/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/compilers/factory.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/compilers/graph_compiler.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/compilers/guide_compiler.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/compilers/hook_compiler.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/compilers/playbook_compiler.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/context_engine.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/deployment/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/diagnostics/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/diagnostics/health.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/env_runtime.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/execution/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/execution/parallel.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/execution/resilience.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/file_repositories.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/governance.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/hook_config_loader.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/hook_webhook_dispatcher.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/hook_workflow_bridge.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/provider.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/providers/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/providers/anthropic_provider.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/providers/gemini_embeddings.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/providers/gemini_provider.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/providers/ollama_provider.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/providers/openai_provider.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/llm/registry.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/logger.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/output_store.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/code_chunker.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/language/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/language/base.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/language/powershell_parser.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/language/python_parser.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/parser/language/typescript_parser.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/presentation/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/presentation/html_renderer.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/presentation/markdown_renderer.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/presentation/markdown_report_renderer.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/profile_store.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/semantic_engine.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/validation/__init__.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/infrastructure/validation/contract_validator.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/kernel/pkg_resources.py +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/env/generic-shell.yaml +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/env/node-vitest.yaml +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/env/python-pytest.yaml +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/commit_body.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/commit_diff.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/commit_index.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/commit_layer.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/commit_shell.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/graph_visualize.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/roadmap_body.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/roadmap_phase.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/html/roadmap_shell.html +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/markdown/efficiency_report.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/skills/best-practices.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/skills/clean-code.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/skills/ddd-standards.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/skills/tdd-practices.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/subagents/architect.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/subagents/test-engineer.md +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/workflows/build.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/workflows/review.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext/templates/workflows/spec.json +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext_cli.egg-info/dependency_links.txt +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext_cli.egg-info/entry_points.txt +0 -0
- {higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/higpertext_cli.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: higpertext-cli
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.4
|
|
4
4
|
Summary: higpertext Engine — LLM-powered terminal agent framework
|
|
5
5
|
Author-email: Angel Ortega <codenodehg@gmail.com>
|
|
6
6
|
License: Proprietary
|
|
@@ -21,8 +21,11 @@ Requires-Dist: pyyaml>=6.0
|
|
|
21
21
|
Requires-Dist: pydantic>=2.0.0
|
|
22
22
|
Requires-Dist: rich>=13.0.0
|
|
23
23
|
Requires-Dist: tqdm>=4.65.0
|
|
24
|
+
Requires-Dist: pandas>=2.0.0
|
|
24
25
|
Provides-Extra: gemini
|
|
25
26
|
Requires-Dist: google-generativeai>=0.5.0; extra == "gemini"
|
|
27
|
+
Provides-Extra: embeddings
|
|
28
|
+
Requires-Dist: sentence-transformers>=3.0.0; extra == "embeddings"
|
|
26
29
|
Provides-Extra: dev
|
|
27
30
|
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
|
28
31
|
Requires-Dist: pytest-mock>=3.10.0; extra == "dev"
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# higpertext Engine
|
|
2
|
+
|
|
3
|
+
**Framework de gobernanza activa para agentes IA.**
|
|
4
|
+
|
|
5
|
+
higpertext controla el comportamiento de los asistentes IA (Claude, Gemini, OpenCode, Copilot) a través de perfiles, capacidades y hooks de runtime — no prompts.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Instalación
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install higpertext-cli
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
htx --help
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Con soporte Gemini:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install higpertext-cli[gemini]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## Inicio rápido
|
|
28
|
+
|
|
29
|
+
### 1. Inicializar el workspace
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
htx agent init --profile global --assistant claude
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### 2. Cargar un perfil
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
htx profile load software_developer --assistant claude
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### 3. Iniciar sesión
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
htx task common.session-start
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### 4. Ejecutar una capacidad
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
htx task common.grep-search --pattern "class.*Service" --path src/
|
|
51
|
+
htx task common.list-rules
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### 5. Correr un workflow
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
htx workflow run higpertext-build
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Comandos principales
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
# Agente
|
|
66
|
+
htx agent init --assistant <claude|gemini|opencode|copilot>
|
|
67
|
+
|
|
68
|
+
# Perfiles
|
|
69
|
+
htx profile load <nombre> --assistant <asistente>
|
|
70
|
+
htx profile install <nombre> --source <path>
|
|
71
|
+
htx profile validate <nombre>
|
|
72
|
+
|
|
73
|
+
# Capacidades
|
|
74
|
+
htx task <namespace.capability> [--param valor]
|
|
75
|
+
htx task common.list-rules
|
|
76
|
+
|
|
77
|
+
# Sesión
|
|
78
|
+
htx task common.session-start
|
|
79
|
+
htx task common.session-clean
|
|
80
|
+
|
|
81
|
+
# Workflows
|
|
82
|
+
htx workflow run <nombre>
|
|
83
|
+
|
|
84
|
+
# Diagnóstico
|
|
85
|
+
htx task common.higpertext-tester
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## Asistentes soportados
|
|
91
|
+
|
|
92
|
+
| Asistente | Configuración generada |
|
|
93
|
+
|-----------|----------------------|
|
|
94
|
+
| Claude Code | `CLAUDE.md`, `.claude/rules/`, hooks nativos |
|
|
95
|
+
| Gemini | `GEMINI.md`, `.gemini/rules/` |
|
|
96
|
+
| OpenCode | `AGENTS.md`, `.opencode/rules/` |
|
|
97
|
+
| GitHub Copilot | `.github/copilot-instructions.md` |
|
|
98
|
+
| Antigravity | `AGENTS.md`, `.agents/rules/` |
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Requisitos
|
|
103
|
+
|
|
104
|
+
- Python >= 3.10
|
|
105
|
+
- Un asistente IA compatible
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## Documentación
|
|
110
|
+
|
|
111
|
+
- [Guía de usuario](docs/external/README.md) — instalación, inicio rápido, referencia de comandos
|
|
112
|
+
- [Documentación interna](docs/internal/README.md) — arquitectura, desarrollo de capacidades y agentes
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "higpertext-cli"
|
|
8
8
|
authors = [{name = "Angel Ortega", email = "codenodehg@gmail.com"}]
|
|
9
|
-
version = "0.8.
|
|
9
|
+
version = "0.8.4"
|
|
10
10
|
description = "higpertext Engine — LLM-powered terminal agent framework"
|
|
11
11
|
requires-python = ">=3.10"
|
|
12
12
|
license = {text = "Proprietary"}
|
|
@@ -28,12 +28,16 @@ dependencies = [
|
|
|
28
28
|
"pydantic>=2.0.0",
|
|
29
29
|
"rich>=13.0.0",
|
|
30
30
|
"tqdm>=4.65.0",
|
|
31
|
+
"pandas>=2.0.0",
|
|
31
32
|
]
|
|
32
33
|
|
|
33
34
|
[project.optional-dependencies]
|
|
34
35
|
gemini = [
|
|
35
36
|
"google-generativeai>=0.5.0",
|
|
36
37
|
]
|
|
38
|
+
embeddings = [
|
|
39
|
+
"sentence-transformers>=3.0.0",
|
|
40
|
+
]
|
|
37
41
|
dev = [
|
|
38
42
|
"pytest>=8.0.0",
|
|
39
43
|
"pytest-mock>=3.10.0",
|
|
@@ -74,4 +78,3 @@ addopts = "-q --tb=short"
|
|
|
74
78
|
|
|
75
79
|
[tool.black]
|
|
76
80
|
line-length = 100
|
|
77
|
-
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"",
|
|
10
10
|
"## higpertext Engine — Contexto del Framework",
|
|
11
11
|
"",
|
|
12
|
-
"Este archivo es generado por **higpertext Engine
|
|
12
|
+
"Este archivo es generado por **higpertext Engine v0.8.1** al ejecutar `profile load`.",
|
|
13
13
|
"El archivo [`AGENTS.md`](AGENTS.md) contains the system prompt completo en formato multi-asistente.",
|
|
14
14
|
"",
|
|
15
15
|
"| Campo | Valor |",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"| Custom slash commands | `.claude/commands/` (spec, plan, build, review) |",
|
|
22
22
|
"",
|
|
23
23
|
"> **Nota para Claude Code**: Los custom slash commands (`/spec`, `/plan`, `/build`, `/review`)",
|
|
24
|
-
"> requieren abrir VS Code desde
|
|
24
|
+
"> requieren abrir VS Code desde la raíz del proyecto del agente, no desde el directorio padre.",
|
|
25
25
|
"",
|
|
26
26
|
"---",
|
|
27
27
|
"",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"```",
|
|
118
118
|
"",
|
|
119
119
|
"---",
|
|
120
|
-
"*higpertext Engine
|
|
120
|
+
"*higpertext Engine v0.8.1 — no editar manualmente.*"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
123
|
"gemini": {
|
|
@@ -158,10 +158,10 @@
|
|
|
158
158
|
"workflow_trigger_hint": "> When in doubt between a single capability and a workflow: **use the workflow**.",
|
|
159
159
|
"operational_title": "## OPERATIONAL WORKFLOW (MANDATORY)",
|
|
160
160
|
"operational_steps": [
|
|
161
|
-
"1. **RESEARCH** — Analyze the user request
|
|
162
|
-
"2. **STRATEGY** —
|
|
161
|
+
"1. **RESEARCH** — Analyze the user request, identify the required capability ID, and pin the expected runtime artifact/path. If the user names a path, start there.",
|
|
162
|
+
"2. **STRATEGY** — Use at most two targeted discovery calls before choosing a fix. If governance is involved, use `common.knowledge-asker` first.",
|
|
163
163
|
"3. **EXECUTE** — Run the exact higpertext CLI command: `{htx_cmd} <id> --<param> <value>`.",
|
|
164
|
-
"4. **VALIDATE** — Ensure the output satisfies the TECHNICAL CONTRACT
|
|
164
|
+
"4. **VALIDATE** — Ensure the output satisfies the TECHNICAL CONTRACT and the user-visible artifact/path."
|
|
165
165
|
],
|
|
166
166
|
"token_rules_title": "## OUTPUT TOKEN REDUCTION (CRITICAL)",
|
|
167
167
|
"token_rules": [
|
|
@@ -274,7 +274,7 @@
|
|
|
274
274
|
"Usa este workflow con: `{htx_workflow_cmd} {wf_name}`",
|
|
275
275
|
"Rules: `.github/rules/{wf_name}.md`",
|
|
276
276
|
"",
|
|
277
|
-
"*higpertext Engine
|
|
277
|
+
"*higpertext Engine v0.8.1 — auto-generated.*"
|
|
278
278
|
],
|
|
279
279
|
"agents_md_index": [
|
|
280
280
|
"# {agent_name_upper} — higpertext Agent Workspace",
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
"```",
|
|
296
296
|
"",
|
|
297
297
|
"---",
|
|
298
|
-
"*higpertext Engine
|
|
298
|
+
"*higpertext Engine v0.8.1 — no editar manualmente.*"
|
|
299
299
|
]
|
|
300
300
|
},
|
|
301
301
|
"opencode": {
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
"```",
|
|
327
327
|
"",
|
|
328
328
|
"---",
|
|
329
|
-
"*higpertext Engine
|
|
329
|
+
"*higpertext Engine v0.8.1 — no editar manualmente.*"
|
|
330
330
|
],
|
|
331
331
|
"agents_md_header": [
|
|
332
332
|
"# {agent_name_upper} — higpertext Agent Workspace",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"session": {
|
|
3
|
-
"default_assistant": "
|
|
3
|
+
"default_assistant": "antigravity",
|
|
4
4
|
"default_profile": "ado_admin",
|
|
5
5
|
"global_profile_names": ["global", "any", "all", ""],
|
|
6
|
-
"assistants": ["gemini", "claude", "copilot", "opencode", "github-copilot"],
|
|
7
|
-
"append_assistants": ["gemini", "copilot", "antigravity"]
|
|
6
|
+
"assistants": ["antigravity", "codex", "gemini", "claude", "copilot", "opencode", "github-copilot"],
|
|
7
|
+
"append_assistants": ["gemini", "copilot", "antigravity", "codex"]
|
|
8
8
|
},
|
|
9
9
|
"telemetry_reporter": {
|
|
10
10
|
"box_width": 56,
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
},
|
|
75
75
|
"deployment": {
|
|
76
76
|
"agent_json": "agent.json",
|
|
77
|
-
"playbooks": ["spec", "plan", "build", "review"
|
|
77
|
+
"playbooks": ["spec", "plan", "build", "review"],
|
|
78
78
|
"no_skills_message": "_No active session — run `session-start` to mount skills._",
|
|
79
79
|
"no_subagents_message": "_No active session — run `session-start` to mount subagents._"
|
|
80
80
|
},
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"ollama_base_url": "http://localhost:11434"
|
|
83
83
|
},
|
|
84
84
|
"context": {
|
|
85
|
-
"universal_skills": ["
|
|
85
|
+
"universal_skills": ["higpertext-guide"],
|
|
86
86
|
"log_sep": "|||"
|
|
87
87
|
},
|
|
88
88
|
"docs": {
|
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
"paths": {
|
|
102
102
|
"gemini": [".gemini/workflows", ".gemini/skills", ".gemini/agents"],
|
|
103
103
|
"antigravity": [".agents/workflows", ".agents/skills", ".agents/agents"],
|
|
104
|
+
"codex": [".higpertext/session/workflows", ".higpertext/session/skills", ".higpertext/session/subagents"],
|
|
104
105
|
"claude": [".claude/commands", ".claude/skills", ".claude/subagents"],
|
|
105
106
|
"opencode": [".opencode/agents", ".opencode/skills",".opencode/subagents"],
|
|
106
107
|
"copilot": [".github/workflows", ".github/skills", ".github/subagents"]
|
|
@@ -109,6 +110,7 @@
|
|
|
109
110
|
"claude": ".claude/skills",
|
|
110
111
|
"gemini": ".gemini/skills",
|
|
111
112
|
"antigravity": ".agents/skills",
|
|
113
|
+
"codex": ".higpertext/session/skills",
|
|
112
114
|
"opencode": ".opencode/skills",
|
|
113
115
|
"copilot": ".github/skills"
|
|
114
116
|
},
|
|
@@ -116,6 +118,7 @@
|
|
|
116
118
|
"claude": ".claude/subagents",
|
|
117
119
|
"gemini": ".gemini/subagents",
|
|
118
120
|
"antigravity": ".agents/subagents",
|
|
121
|
+
"codex": ".higpertext/session/subagents",
|
|
119
122
|
"opencode": ".opencode/subagents",
|
|
120
123
|
"copilot": ".github/subagents"
|
|
121
124
|
},
|
|
@@ -124,27 +127,31 @@
|
|
|
124
127
|
"claude": ".claude",
|
|
125
128
|
"copilot": ".github",
|
|
126
129
|
"opencode": ".opencode",
|
|
127
|
-
"antigravity": ".agents"
|
|
130
|
+
"antigravity": ".agents",
|
|
131
|
+
"codex": ".codex"
|
|
128
132
|
},
|
|
129
133
|
"display_names": {
|
|
130
134
|
"gemini": "Google Gemini",
|
|
131
135
|
"claude": "Claude Code",
|
|
132
136
|
"copilot": "GitHub Copilot",
|
|
133
137
|
"opencode": "OpenCode Assistant",
|
|
134
|
-
"antigravity": "Antigravity"
|
|
138
|
+
"antigravity": "Antigravity",
|
|
139
|
+
"codex": "Codex"
|
|
135
140
|
},
|
|
136
141
|
"rules_destinations": {
|
|
137
142
|
"claude": ".claude/rules/session-capabilities.md",
|
|
138
143
|
"opencode": ".opencode/rules/session-capabilities.md",
|
|
139
144
|
"gemini": "GEMINI.md",
|
|
140
145
|
"copilot": ".github/copilot-instructions.md",
|
|
141
|
-
"antigravity": "AGENTS.md"
|
|
146
|
+
"antigravity": "AGENTS.md",
|
|
147
|
+
"codex": "AGENTS.md"
|
|
142
148
|
},
|
|
143
149
|
"ignore_tools": ["Read", "Glob", "Grep", "WebFetch", "WebSearch"],
|
|
144
150
|
"hooks_dirs": {
|
|
145
151
|
"claude": ".claude/hooks",
|
|
146
152
|
"gemini": ".gemini/hooks",
|
|
147
153
|
"antigravity": ".agents/hooks",
|
|
154
|
+
"codex": ".codex/hooks",
|
|
148
155
|
"opencode": ".opencode/hooks",
|
|
149
156
|
"copilot": ".github/copilot/hooks",
|
|
150
157
|
"github-copilot":".github/copilot/hooks"
|
{higpertext_cli-0.8.0 → higpertext_cli-0.8.4}/src/config/hooks/custom/test_output_limiter.json
RENAMED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "custom.test_output_limiter",
|
|
3
3
|
"event": "PostToolUse",
|
|
4
4
|
"matcher": "Bash|higpertext_task|higpertext_workflow",
|
|
5
|
-
"script": "src/hooks/custom/test_output_limiter.py",
|
|
5
|
+
"script": "src/config/hooks/custom/test_output_limiter.py",
|
|
6
6
|
"timeout": 15,
|
|
7
7
|
"priority": 10,
|
|
8
8
|
"description": "Intercepta y limita la salida del test runner para evitar bloat en el contexto del LLM"
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
"""Hook PostToolUse: intercepta y limita la salida del test runner.
|
|
2
|
+
|
|
3
|
+
Evita que tracebacks y logs largos saturen el contexto del LLM.
|
|
4
|
+
- Éxito → reemplaza el output con una línea verde.
|
|
5
|
+
- Fallo → guarda traceback + git diff en .higpertext/reports/test_failure.md
|
|
6
|
+
y expone al LLM solo un resumen ligero con enlace al reporte.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
import json
|
|
10
|
+
import subprocess
|
|
11
|
+
import sys
|
|
12
|
+
from pathlib import Path
|
|
13
|
+
|
|
14
|
+
try:
|
|
15
|
+
from hook_io import get_project_root, read_payload
|
|
16
|
+
except ImportError:
|
|
17
|
+
|
|
18
|
+
def get_project_root() -> Path: # type: ignore[misc]
|
|
19
|
+
return Path.cwd()
|
|
20
|
+
|
|
21
|
+
def read_payload() -> dict: # type: ignore[misc]
|
|
22
|
+
try:
|
|
23
|
+
return json.load(sys.stdin)
|
|
24
|
+
except Exception:
|
|
25
|
+
return {}
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
_TEST_CAPABILITIES = {"common.test-resolver", "common.higpertext-tester"}
|
|
29
|
+
_TEST_WORKFLOWS = {"testworkflow", "review"}
|
|
30
|
+
_FAILURE_PATTERNS = {"failed", "failures", "errors", "error", "traceback", "exception"}
|
|
31
|
+
_REPORT_REL = ".higpertext/reports/test_failure.md"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def _is_test_run(tool_name: str, tool_input: dict) -> bool:
|
|
35
|
+
if tool_name == "Bash":
|
|
36
|
+
cmd = tool_input.get("command") or tool_input.get("CommandLine") or ""
|
|
37
|
+
return "pytest" in cmd or "python -m pytest" in cmd
|
|
38
|
+
if tool_name == "higpertext_task":
|
|
39
|
+
return tool_input.get("name", "") in _TEST_CAPABILITIES
|
|
40
|
+
if tool_name == "higpertext_workflow":
|
|
41
|
+
return tool_input.get("name", "") in _TEST_WORKFLOWS
|
|
42
|
+
return False
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def _has_failure(output: str, response: dict) -> bool:
|
|
46
|
+
lower = output.lower()
|
|
47
|
+
if any(p in lower for p in _FAILURE_PATTERNS):
|
|
48
|
+
return True
|
|
49
|
+
return response.get("metadata", {}).get("returncode", 0) != 0
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def _get_git_diff(project_root: Path) -> str:
|
|
53
|
+
try:
|
|
54
|
+
result = subprocess.run(
|
|
55
|
+
["git", "diff"],
|
|
56
|
+
capture_output=True,
|
|
57
|
+
text=True,
|
|
58
|
+
cwd=str(project_root),
|
|
59
|
+
timeout=5,
|
|
60
|
+
)
|
|
61
|
+
return result.stdout or ""
|
|
62
|
+
except Exception as exc:
|
|
63
|
+
return f"No se pudo obtener git diff: {exc}"
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
def _write_failure_report(report_file: Path, output: str, diff: str) -> None:
|
|
67
|
+
report_file.parent.mkdir(parents=True, exist_ok=True)
|
|
68
|
+
content = f"""# Reporte de Fallo de Pruebas Unitarias
|
|
69
|
+
|
|
70
|
+
Generado por el hook `test_output_limiter` de higpertext.
|
|
71
|
+
|
|
72
|
+
## Resumen del Fallo
|
|
73
|
+
El test runner ha fallado durante la ejecución.
|
|
74
|
+
|
|
75
|
+
## Output Original del Test (Traceback)
|
|
76
|
+
```text
|
|
77
|
+
{output}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Cambios Activos (Git Diff)
|
|
81
|
+
```diff
|
|
82
|
+
{diff}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
*Usa `common.knowledge-asker` para consultar detalles de este reporte o consúltalo directamente.*
|
|
87
|
+
"""
|
|
88
|
+
try:
|
|
89
|
+
report_file.write_text(content, encoding="utf-8")
|
|
90
|
+
except OSError: # nosec B110
|
|
91
|
+
pass
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
def main() -> None:
|
|
95
|
+
payload = read_payload()
|
|
96
|
+
if not payload:
|
|
97
|
+
print(json.dumps({"continue": True}))
|
|
98
|
+
return
|
|
99
|
+
|
|
100
|
+
tool_name: str = payload.get("tool_name", "")
|
|
101
|
+
tool_input: dict = payload.get("tool_input", {})
|
|
102
|
+
tool_response: dict = payload.get("tool_response", {})
|
|
103
|
+
|
|
104
|
+
if not _is_test_run(tool_name, tool_input):
|
|
105
|
+
print(json.dumps({"continue": True}))
|
|
106
|
+
return
|
|
107
|
+
|
|
108
|
+
output = tool_response.get("output", "") or tool_response.get("result", "") or ""
|
|
109
|
+
if not isinstance(output, str):
|
|
110
|
+
output = str(output)
|
|
111
|
+
|
|
112
|
+
if not _has_failure(output, tool_response):
|
|
113
|
+
print(json.dumps({
|
|
114
|
+
"continue": True,
|
|
115
|
+
"hookSpecificOutput": {
|
|
116
|
+
"replacementOutput": "[HIGPERTEXT TEST MONITOR] 🟢 All tests passed successfully."
|
|
117
|
+
},
|
|
118
|
+
}))
|
|
119
|
+
return
|
|
120
|
+
|
|
121
|
+
project_root = get_project_root()
|
|
122
|
+
report_file = project_root / _REPORT_REL
|
|
123
|
+
_write_failure_report(report_file, output, _get_git_diff(project_root))
|
|
124
|
+
|
|
125
|
+
link = f"file:///{report_file.as_posix()}"
|
|
126
|
+
summary = (
|
|
127
|
+
f"[HIGPERTEXT TEST MONITOR] 🔴 Tests failed.\n"
|
|
128
|
+
f"To avoid context bloat, the full traceback, error analysis, and the active git diff have been saved to:\n"
|
|
129
|
+
f"👉 [test_failure.md]({link})\n\n"
|
|
130
|
+
f"Use 'common.knowledge-asker' with a query like 'failure in test_file.py' to search the details "
|
|
131
|
+
f"of this failure dynamically, or read the file directly."
|
|
132
|
+
)
|
|
133
|
+
print(json.dumps({
|
|
134
|
+
"continue": True,
|
|
135
|
+
"hookSpecificOutput": {"replacementOutput": summary},
|
|
136
|
+
}))
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
if __name__ == "__main__":
|
|
140
|
+
main()
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent_designer",
|
|
3
|
+
"description": "Agent Designer — diseña y construye agentes higpertext externos, perfiles, capabilities y sus contratos técnicos. Incluye guía completa de creación paso a paso.",
|
|
4
|
+
"system_prompt": "Eres el Agent Designer experto del higpertext Engine. Tu misión es guiar al usuario para crear agentes externos completos, perfiles JSON válidos, capabilities con contratos técnicos y hooks — todo siguiendo los principios de bounded context, herencia de perfiles y principio de mínimo privilegio.\n\n---\n\n## CONOCIMIENTO BASE — ARQUITECTURA DE UN AGENTE\n\n### Estructura de directorios del agente generado\n```\nmi-agente/\n├── docs/ ← documentación del agente\n├── src/\n│ ├── capabilities/ ← capabilities propias del agente\n│ │ └── <namespace>/\n│ │ ├── mi-capability.json ← definición + contrato técnico\n│ │ └── scripts/\n│ │ └── mi_script.py ← lógica de ejecución\n│ ├── config/\n│ │ ├── profiles/\n│ │ │ ├── agent_designer.json ← copiado automáticamente (NO editar)\n│ │ │ └── mi_perfil.json ← TU perfil principal del agente\n│ │ ├── governance/ ← reglas y guardrails propios\n│ │ ├── templates/ ← plantillas reutilizables\n│ │ └── hooks/\n│ │ ├── custom/ ← hooks activos siempre\n│ │ └── profiles/ ← hooks activos por perfil\n│ ├── hooks/\n│ │ ├── custom/ ← scripts de hooks siempre activos\n│ │ └── profiles/<perfil>/ ← scripts de hooks por perfil\n│ ├── templates/\n│ │ ├── skills/<skill>/skill.json ← skills para session_skills\n│ │ └── subagents/<sub>.json ← subagentes para session_subagents\n│ └── workflows/\n│ └── mi-workflow.json ← playbooks propios del agente\n├── tests/\n│ └── capabilities/<namespace>/ ← tests de capabilities propias\n```\n\n**Regla de oro**: el desarrollador solo toca `src/`. El directorio `.higpertext/` es generado automáticamente por el motor en runtime — nunca se versiona ni edita a mano.\n\n---\n\n## FLUJO DE CREACIÓN — PASO A PASO\n\n### PASO 1 — Crear el scaffolding del agente\n```bash\n# Desde el directorio del motor higpertext (LLM-agent/)\nhtx task common.agent-builder \\\n --profile <nombre_perfil> \\\n --target ../<nombre-agente> \\\n --description \"Descripción del agente\"\n```\n\nEsto genera:\n- Estructura completa de `src/`\n- Launcher `htx.py` apuntando al motor central\n- Perfiles base incluyendo `agent_designer.json`\n- `.higpertext/` inicializado con hooks compilados\n- `semantic_graph.md` inicial\n\n> **Nombres RESERVADOS** — no usar como `--profile`:\n> `base_agent`, `agent_designer`, `global`, `base_developer`, `base_operator`, `base_auditor`\n\n### PASO 2 — Definir el perfil del agente\nCrea `src/config/profiles/<mi_perfil>.json`:\n```json\n{\n \"name\": \"mi_perfil\",\n \"description\": \"Descripción clara y concisa del rol del agente.\",\n \"system_prompt\": \"Eres un experto en X. Tu misión principal es... Piensas antes de actuar: descompones la petición en su objetivo real, eliges el cambio mínimo correcto y verificas el resultado antes de concluir. Priorizas actuar sobre narrar.\",\n \"capabilities\": [\n \"common.grep-search\",\n \"common.knowledge-asker\",\n \"common.memory-manager\",\n \"mi_namespace.mi-capability\"\n ],\n \"governance_access\": false,\n \"rules\": [\n \"Regla de comportamiento específica del dominio.\",\n \"Nunca hardcodees secretos ni credenciales.\",\n \"Documenta cambios en APIs públicas en el mismo PR.\"\n ],\n \"session_skills\": [\"best-practices\"],\n \"session_subagents\": []\n}\n```\n\n#### Campos del perfil — referencia completa\n| Campo | Tipo | Requerido | Descripción |\n|---|---|---|---|\n| `name` | string | ✅ | Identificador único del perfil (snake_case) |\n| `description` | string | ✅ | Descripción del rol para catálogo |\n| `system_prompt` | string | ✅ | Instrucciones base del agente LLM |\n| `capabilities` | array | ✅ | IDs de capabilities disponibles (`namespace.id`) |\n| `governance_access` | boolean | ✅ | `true` solo para agentes de auditoría/compliance |\n| `rules` | array | ❌ | Reglas de comportamiento adicionales |\n| `session_skills` | array | ❌ | Skills cargados automáticamente al iniciar sesión |\n| `session_subagents` | array | ❌ | Subagentes disponibles en sesión |\n| `subprofiles` | array | ❌ | Perfiles que se incluyen como subperfil (ej: `agent_designer`) |\n| `hooks` | object | ❌ | Hooks globales del motor a activar |\n| `model_preference` | string | ❌ | Modelo preferido: `any`, `claude`, `gemini`, etc. |\n\n### PASO 3 — Crear una capability propia\n\n#### Estructura de archivos\n```\nsrc/capabilities/<namespace>/\n├── mi-capability.json\n└── scripts/\n └── mi_script.py\n```\n\n#### `mi-capability.json` — esquema completo\n```json\n{\n \"id\": \"mi_namespace.mi-capability\",\n \"version\": \"1.0.0\",\n \"name\": \"Mi Capability\",\n \"description\": \"Descripción clara de qué hace esta capability.\",\n \"entrypoint\": \"src/capabilities/mi_namespace/scripts/mi_script.py\",\n \"language\": \"python\",\n \"parameters\": [\n {\n \"name\": \"input\",\n \"description\": \"Texto de entrada a procesar.\",\n \"required\": true\n },\n {\n \"name\": \"output_format\",\n \"description\": \"Formato de salida: json | text.\",\n \"required\": false,\n \"default\": \"text\"\n }\n ],\n \"contract\": {\n \"rules\": [\n \"Debe validar que --input no esté vacío.\",\n \"Debe emitir [SUCCESS] al finalizar correctamente.\",\n \"Debe emitir [ERROR] con mensaje descriptivo ante fallos.\",\n \"Nunca debe exponer variables de entorno ni secrets en el output.\"\n ],\n \"success_pattern\": \"\\\\[SUCCESS\\\\]\"\n },\n \"examples\": [\n {\n \"description\": \"Uso básico\",\n \"command\": \"htx task mi_namespace.mi-capability --input \\\"valor\\\"\"\n }\n ],\n \"related_docs\": [\n \"docs/guides/mi-capability.md\"\n ]\n}\n```\n\n#### `mi_script.py` — plantilla base\n```python\nimport argparse\nimport sys\n\n\ndef parse_args() -> argparse.Namespace:\n parser = argparse.ArgumentParser(description=\"Mi Capability Script\")\n parser.add_argument(\"--input\", required=True, help=\"Texto de entrada\")\n parser.add_argument(\"--output_format\", default=\"text\", choices=[\"json\", \"text\"])\n return parser.parse_args()\n\n\ndef main() -> None:\n args = parse_args()\n\n if not args.input.strip():\n print(\"[ERROR] --input no puede estar vacío\", file=sys.stderr)\n sys.exit(1)\n\n # --- lógica principal aquí ---\n resultado = args.input.upper()\n # --- fin de lógica ---\n\n print(f\"[SUCCESS] Resultado: {resultado}\")\n\n\nif __name__ == \"__main__\":\n main()\n```\n\n### PASO 4 — Agregar hooks propios (opcional)\n\n#### Tipos de hooks por carpeta\n| Ubicación | Alcance |\n|---|---|\n| `src/config/hooks/profiles/<perfil>/` | Solo activo cuando ese perfil está cargado |\n| `src/config/hooks/custom/` | Activo siempre, sin restricción de perfil |\n\n#### Esquema de un hook JSON\n```json\n{\n \"id\": \"custom.mi_hook\",\n \"event\": \"PreToolUse\",\n \"matcher\": \"Bash\",\n \"script\": \"src/config/hooks/custom/mi_hook.py\",\n \"timeout\": 10,\n \"priority\": 2,\n \"override\": false,\n \"description\": \"Bloquea comandos destructivos antes de ejecutar Bash\"\n}\n```\n\n#### Eventos disponibles para hooks\n| Evento | Cuándo se dispara |\n|---|---|\n| `PreToolUse` | Antes de que el LLM ejecute una herramienta |\n| `PostToolUse` | Después de que la herramienta termina |\n| `PreAgentStart` | Al iniciar el agente |\n| `SessionEnd` | Al cerrar la sesión |\n\n### PASO 5 — Recompilar el ambiente\nDespués de cambiar perfiles, hooks o configuración:\n```bash\n# Recompilar desde el motor\nhtx agent init --profile mi_perfil --target ../mi-agente\n\n# Ver estado actual del agente\nhtx agent status --target ../mi-agente\n\n# Limpiar sesión sin borrar configuración\nhtx agent clean --target ../mi-agente\n```\n\n### PASO 6 — Registrar y sincronizar el agente externo\n```bash\n# Registrar el agente en el motor\nhtx task common.agent-sync --action register \\\n --name mi-agente \\\n --path ../mi-agente \\\n --profile mi_perfil\n\n# Sincronizar hooks y perfiles actualizados\nhtx task common.agent-sync --action sync \\\n --name mi-agente \\\n --assistant claude\n\n# Listar todos los agentes registrados\nhtx task common.agent-sync --action list\n```\n\n### PASO 7 — Cargar el perfil en el asistente\n```bash\n# Regenerar catálogo de documentación\nhtx task common.docs-sync\n\n# Cargar el perfil en Claude\nhtx profile load mi_perfil --assistant claude\n\n# Cargar el perfil en Gemini\nhtx profile load mi_perfil --assistant gemini\n```\n\n---\n\n## CAPABILITIES DEL MOTOR — CATÁLOGO DE REFERENCIA\n\nEstas capabilities del motor están disponibles para incluir en cualquier perfil:\n\n### Exploración y búsqueda\n| ID | Descripción breve |\n|---|---|\n| `common.grep-search` | Búsqueda de patrones en código/texto con filtros avanzados |\n| `common.smart-read` | Lectura segura de archivos sin saturar el contexto |\n| `common.file-map` | Mapeo de estructura de archivos trackeados |\n| `common.search-router` | Recomienda la capability de búsqueda correcta según la intención |\n| `common.error-context-locator` | Extrae file:line desde trazas de error |\n\n### Memoria y conocimiento\n| ID | Descripción breve |\n|---|---|\n| `common.memory-manager` | Persiste aprendizajes y acciones en `.memory/` |\n| `common.knowledge-asker` | Consulta base de conocimiento de gobernanza y minutas |\n\n### Gestión de sesión\n| ID | Descripción breve |\n|---|---|\n| `common.session-start` | Inicializa sesión con skills, subagentes y playbooks |\n| `common.session-clean` | Cierra sesión y desmonta recursos efímeros |\n| `common.list-rules` | Lista capabilities disponibles para el perfil activo |\n| `common.load-rules` | Carga reglas detalladas de capabilities al contexto del LLM |\n\n### Construcción de agentes\n| ID | Descripción breve |\n|---|---|\n| `common.agent-builder` | Crea scaffolding completo de un nuevo agente externo |\n| `common.agent-sync` | Registra y sincroniza agentes externos con el motor |\n| `common.subagent-executor` | Lanza ejecución aislada de un subagente especializado |\n| `common.sync-agents` | Propaga reglas y perfiles hacia carpetas del asistente IA |\n\n### Calidad y código\n| ID | Descripción breve |\n|---|---|\n| `common.code-skeletonizer` | Genera esqueleto de código sin implementación (ahorra tokens) |\n| `common.diff-reviewer` | Review de cambios git enfocado en Clean Code y SOLID |\n| `common.higpertext-tester` | Suite de validación e integridad del motor |\n| `common.eval-agent` | Framework de evaluación de modelos y configuración |\n\n### Documentación\n| ID | Descripción breve |\n|---|---|\n| `common.docs-sync` | Regenera catálogos de capabilities y perfiles |\n| `common.context-budget-report` | Estima consumo de contexto antes de ejecutar |\n| `common.hook-health` | Valida que los hooks estén registrados y funcionen |\n\n### Git\n| ID | Descripción breve |\n|---|---|\n| `git.committer` | Commit siguiendo Conventional Commits con push opcional |\n| `git.diff` | Muestra cambios locales en el repositorio Git |\n\n---\n\n## SKILLS DISPONIBLES — REFERENCIA\n\n| Skill ID | Categoría | Contenido |\n|---|---|---|\n| `higpertext-guide` | core | Guía completa del ecosistema CLI, delegación de comandos y análisis del proyecto |\n| `agent-design-standards` | agents | Single Responsibility, contratos de capability, tool minimalism, governance by profile |\n| `agent-builder-guide` | agents | Flujo de 7 pasos para construir agentes: scaffolding, perfil, capabilities, hooks, sync y carga |\n| `capability-validator` | agents | Validaciones de capability JSON, contratos técnicos, perfiles y hooks con checklists accionables |\n| `best-practices` | development | Docstrings, protección de secrets, cobertura de tests ≥ 80% |\n| `clean-code` | development | Principios SOLID, Clean Code, funciones ≤ 30 líneas |\n| `tdd-practices` | development | Test-Driven Development, cobertura y pirámide de tests |\n| `ddd-standards` | architecture | Domain-Driven Design, bounded contexts, agregados |\n\n---\n\n## PRINCIPIOS DE DISEÑO — REGLAS CRÍTICAS\n\n1. **Single Responsibility**: Cada agente tiene UN dominio claramente definido. Nunca crees un 'god agent'.\n2. **Mínimo privilegio**: Incluye solo las capabilities estrictamente necesarias para el rol.\n3. **Contratos técnicos**: Toda capability debe definir `contract.rules` con éxitos y fallos explícitos.\n4. **Governance by profile**: Un agente solo accede a capabilities listadas en su perfil.\n5. **Subagente por subtarea**: Delega tareas especializadas a subagentes en lugar de ampliar el scope del agente principal.\n6. **Nunca hardcodear rutas absolutas**: Usa siempre paths relativos al proyecto.\n7. **Verificar antes de referenciar**: Antes de incluir una capability en un perfil, confirma que su JSON existe en `src/higpertext/capabilities/` del motor o en `src/capabilities/` del agente.\n\n---\n\n## QUÉ NO HACER — ANTI-PATRONES\n\n| Acción | Razón |\n|---|---|\n| Copiar `src/core/` del motor | Rompe la modularidad — usa el launcher `htx.py` |\n| Editar `.higpertext/` a mano | Es estado compilado, se sobreescribe en cada `agent init` |\n| Usar nombres reservados como perfil | El motor los bloquea con error |\n| Modificar `src/config/hooks/global/` | Es exclusivo del motor higpertext |\n| Editar `agent_designer.json` del agente | Se sobreescribe en cada `agent init` |\n| Usar `governance_access: true` sin necesidad | Solo para agentes de auditoría/compliance |\n| Incluir capabilities no verificadas | Provoca errores en runtime al intentar cargar el perfil |\n\n---\n\n## WORKFLOW DE DISEÑO — PROTOCOLO ESTÁNDAR\n\nAntes de crear cualquier agente o perfil, sigue este orden:\n1. **Identificar el dominio** → ¿Cuál es la responsabilidad única del agente?\n2. **Listar capabilities necesarias** → `htx task common.list-rules` para ver disponibles\n3. **Verificar existencia** → Confirma que cada capability existe en el catálogo\n4. **Crear scaffolding** → `htx task common.agent-builder --profile X --target ../Y`\n5. **Definir perfil JSON** → `src/config/profiles/mi_perfil.json`\n6. **Crear capabilities propias** → Solo si la funcionalidad no existe en el motor\n7. **Registrar y sincronizar** → `htx task common.agent-sync --action register ...`\n8. **Cargar perfil** → `htx profile load mi_perfil --assistant claude`\n9. **Regenerar docs** → `htx task common.docs-sync`\n\n---\n\nPiensas de forma estructurada: descompones la petición en su objetivo real, propones una sola estrategia justificada en una línea, y verificas el resultado antes de concluir. Priorizas actuar sobre narrar.",
|
|
5
|
+
"capabilities": [
|
|
6
|
+
"common.agent-builder",
|
|
7
|
+
"common.agent-sync",
|
|
8
|
+
"common.grep-search",
|
|
9
|
+
"common.smart-read",
|
|
10
|
+
"common.knowledge-asker",
|
|
11
|
+
"common.list-rules",
|
|
12
|
+
"common.load-rules",
|
|
13
|
+
"common.memory-manager",
|
|
14
|
+
"common.truth-keeper",
|
|
15
|
+
"common.file-map",
|
|
16
|
+
"common.docs-sync",
|
|
17
|
+
"common.session-start",
|
|
18
|
+
"common.session-clean",
|
|
19
|
+
"common.hook-health",
|
|
20
|
+
"common.context-budget-report",
|
|
21
|
+
"common.eval-agent",
|
|
22
|
+
"common.sync-agents",
|
|
23
|
+
"common.subagent-executor",
|
|
24
|
+
"common.error-context-locator",
|
|
25
|
+
"common.search-router",
|
|
26
|
+
"common.env-catalog",
|
|
27
|
+
"common.env-runner",
|
|
28
|
+
"common.env-status",
|
|
29
|
+
"common.env-logs",
|
|
30
|
+
"common.env-stop",
|
|
31
|
+
"common.env-clean",
|
|
32
|
+
"common.env-template",
|
|
33
|
+
"common.project-explainer"
|
|
34
|
+
],
|
|
35
|
+
"governance_access": false,
|
|
36
|
+
"rules": [
|
|
37
|
+
"Siempre conoces la estructura de un agente higpertext: src/capabilities/, src/config/profiles/, src/workflows/, src/config/hooks/.",
|
|
38
|
+
"Guías al usuario con el flujo completo: agent-builder → perfil JSON → capabilities → hooks → agent-sync → profile load.",
|
|
39
|
+
"Antes de referenciar una capability en un perfil, verifica que su JSON exista en src/higpertext/capabilities/ del motor o src/capabilities/ del agente.",
|
|
40
|
+
"Nunca hardcodees rutas absolutas — usa siempre paths relativos al proyecto.",
|
|
41
|
+
"Los nombres reservados (base_agent, agent_designer, global, base_developer, base_operator, base_auditor) no pueden usarse como nombre de perfil.",
|
|
42
|
+
"Los hooks globales del motor no se modifican — solo src/config/hooks/profiles/ y src/config/hooks/custom/ del agente.",
|
|
43
|
+
"Siempre propón un perfil con el mínimo de capabilities necesarias para el rol (principio de mínimo privilegio).",
|
|
44
|
+
"Todo capability creada debe incluir un contrato técnico (contract.rules) con patrones de éxito y error explícitos.",
|
|
45
|
+
"Después de crear o modificar perfiles y capabilities, recomienda ejecutar htx task common.docs-sync para regenerar el catálogo."
|
|
46
|
+
],
|
|
47
|
+
"session_skills": [
|
|
48
|
+
"agent-design-standards",
|
|
49
|
+
"higpertext-guide",
|
|
50
|
+
"best-practices",
|
|
51
|
+
"agent-builder-guide",
|
|
52
|
+
"capability-validator"
|
|
53
|
+
],
|
|
54
|
+
"session_subagents": [
|
|
55
|
+
"architect"
|
|
56
|
+
]
|
|
57
|
+
}
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"common.list-rules",
|
|
9
9
|
"common.load-rules",
|
|
10
10
|
"common.memory-manager",
|
|
11
|
+
"common.truth-keeper",
|
|
11
12
|
"common.session-start",
|
|
12
13
|
"common.session-clean",
|
|
13
14
|
"common.agent-builder"
|
|
@@ -16,11 +17,11 @@
|
|
|
16
17
|
"agent_designer"
|
|
17
18
|
],
|
|
18
19
|
"rules": [
|
|
19
|
-
"Siempre conoces la estructura de un agente higpertext: src/capabilities/, src/config/profiles/, src/workflows/, src/hooks/.",
|
|
20
|
+
"Siempre conoces la estructura de un agente higpertext: src/capabilities/, src/config/profiles/, src/workflows/, src/config/hooks/.",
|
|
20
21
|
"Puedes guiar al usuario para crear un perfil JSON válido, definir capabilities y configurar hooks.",
|
|
21
22
|
"Nunca hardcodees rutas absolutas — usa paths relativos al proyecto.",
|
|
22
23
|
"Antes de sugerir una capability, verifica que exista en src/capabilities/ del agente o del motor.",
|
|
23
|
-
"Los hooks globales no se modifican — solo los de src/hooks/profiles/ y src/hooks/custom/."
|
|
24
|
+
"Los hooks globales no se modifican — solo los de src/config/hooks/profiles/ y src/config/hooks/custom/."
|
|
24
25
|
],
|
|
25
26
|
"hooks": {
|
|
26
27
|
"global": [
|
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
"model_preference": "any",
|
|
5
5
|
"capabilities": [
|
|
6
6
|
"common.memory-manager",
|
|
7
|
+
"common.truth-keeper",
|
|
7
8
|
"common.knowledge-asker",
|
|
8
9
|
"common.sync-agents",
|
|
9
|
-
"common.wiki-manager",
|
|
10
10
|
"common.subagent-executor",
|
|
11
11
|
"common.session-start",
|
|
12
12
|
"common.session-clean",
|
|
13
|
-
"common.guidelines-sync",
|
|
14
13
|
"common.docs-sync",
|
|
15
14
|
"common.grep-search",
|
|
16
15
|
"common.smart-read",
|
|
@@ -27,7 +26,11 @@
|
|
|
27
26
|
"common.env-clean",
|
|
28
27
|
"common.env-template",
|
|
29
28
|
"common.list-rules",
|
|
30
|
-
"common.load-rules"
|
|
29
|
+
"common.load-rules",
|
|
30
|
+
"common.project-explainer"
|
|
31
|
+
],
|
|
32
|
+
"session_skills": [
|
|
33
|
+
"higpertext-guide"
|
|
31
34
|
],
|
|
32
35
|
"system_prompt": "Herramientas transversales de gestión de memoria, base de conocimiento y auditoría del sistema."
|
|
33
36
|
}
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"gemini": [".geminiignore"],
|
|
16
16
|
"claude": [".claudeignore"],
|
|
17
17
|
"opencode": [".opencodeignore"],
|
|
18
|
+
"codex": [".codexignore"],
|
|
18
19
|
"copilot": [".copilotignore"],
|
|
19
20
|
"github-copilot":[".copilotignore"],
|
|
20
21
|
"antigravity": [".antigravityignore"]
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
".claude/",
|
|
27
28
|
".gemini/",
|
|
28
29
|
".opencode/",
|
|
30
|
+
".codex/",
|
|
29
31
|
".agents/",
|
|
30
32
|
".memory/",
|
|
31
33
|
".wiki/",
|
|
@@ -54,6 +56,15 @@
|
|
|
54
56
|
"Las reglas de los perfiles se inyectarán en `AGENTS.md` y `.agents/rules/higpertext_rules.md` cuando uses el comando `profile load`."
|
|
55
57
|
]
|
|
56
58
|
},
|
|
59
|
+
"codex": {
|
|
60
|
+
"filename": "AGENTS.md",
|
|
61
|
+
"title": "# Codex Guide",
|
|
62
|
+
"intro": [
|
|
63
|
+
"> Plantilla de Integración y Herramientas para Codex",
|
|
64
|
+
"\n## Configuración",
|
|
65
|
+
"Las reglas de los perfiles se inyectarán en `AGENTS.md` y `.codex/rules/higpertext_rules.md` cuando uses el comando `profile load`."
|
|
66
|
+
]
|
|
67
|
+
},
|
|
57
68
|
"claude": {
|
|
58
69
|
"filename": "CLAUDE.md",
|
|
59
70
|
"title": "# 🧊 Claude Code Guide",
|
|
@@ -104,7 +115,7 @@
|
|
|
104
115
|
"\n## 👤 Creación y Gestión de Perfiles",
|
|
105
116
|
"Este espacio comienza vacío para que puedas personalizar la personalidad y alcances de tu asistente IA.",
|
|
106
117
|
"\n### Cargar un rol predefinido del catálogo de higpertext:",
|
|
107
|
-
"`htx profile load <nombre> --assistant <gemini|claude|copilot|opencode>`",
|
|
118
|
+
"`htx profile load <nombre> --assistant <codex|gemini|claude|copilot|opencode|antigravity>`",
|
|
108
119
|
"*(Roles disponibles: devsecops, sre, pwsh_engineer, ado_admin, agents_architect)*",
|
|
109
120
|
"\n### Crear tu propio perfil personalizado:",
|
|
110
121
|
"1. En el repositorio de higpertext Engine, crea un archivo `src/config/profiles/mi-perfil.json` con esta estructura:",
|