k-cli-for-devs 1.0.4__tar.gz → 1.0.5__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.
- {k_cli_for_devs-1.0.4/k_cli_for_devs.egg-info → k_cli_for_devs-1.0.5}/PKG-INFO +8 -2
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/README.md +7 -1
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/conflict_resolver.py +4 -3
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/web/server.py +43 -1
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5/k_cli_for_devs.egg-info}/PKG-INFO +8 -2
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/pyproject.toml +1 -1
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/LICENSE +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/MANIFEST.in +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/adversarial_swarm.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/agent_core.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/autonomous_agent.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/background_daemon.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/orchestrator.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/persona.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/scaffold_engine.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/strands_agent.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/agents/subagents.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/cli.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/airgap.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/credentials.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/credit_saver.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/intent_sensor.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/llm_driver.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/memory.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/model_manager.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/models_hub.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/prompting.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/rate_limit_guard.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/sdk.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/session.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/smart_router.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/storage_manager.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/core/viewport_engine.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/demo/demo_runner.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/ai_bisect.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/checkpoint.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/git_guard.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/patcher.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/repo_map.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/smart_git.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/git/verifier.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/github/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/github/dedup_engine.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/github/github_client.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/github/github_engine.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/github/local_hub.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/github/pr_watcher.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/github/trending.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/audit.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/benchmark_harness.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/chaos_immunity.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/cicd_healer.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/codebase_qa.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/command_runner.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/diagram_generator.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/doc_retriever.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/feature.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/ghost_daemon.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/incident_triage.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/mcp_client.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/repo_gardener.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/rules.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/security.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/security_healer.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/sentinel.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tools/synapse_graph.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tui/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tui/diff_viewer.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tui/tui.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tui/tui_animations.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/tui/tui_app.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/ui/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/ui/simple_repl.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/web/__init__.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/web/static/app.js +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/web/static/index.html +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/web/static/monitor.html +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli/web/static/style.css +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli_for_devs.egg-info/SOURCES.txt +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli_for_devs.egg-info/dependency_links.txt +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli_for_devs.egg-info/entry_points.txt +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli_for_devs.egg-info/requires.txt +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/k_cli_for_devs.egg-info/top_level.txt +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/setup.cfg +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_adaptive_smart_router.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_adversarial_knowledge.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_adversarial_m6_patcher_git_session.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_autonomous_agent.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_autonomous_killer_features.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_challenger_m1_driver_and_mock.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_challenger_m1_streaming.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_chaos_immunity.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_cli.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_cli_fuzzer_traversal.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_cli_github_conflict_mcp.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_codex_hub.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_command_runner.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_conflict_resolver.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_credentials.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_credit_saver_and_rotator.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_dedup_engine.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_devdocs_expansion.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_diagram_generator.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_doc_retriever.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_dynamic_discovery_and_audit.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_e2e_suite.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_git_guard.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_github_client.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_github_engine.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_hackathon_bedrock_and_daemon.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_incident_triage.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_intent_sensor.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_k_cli_full_e2e.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_killer_features.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_llm_driver.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_local_hub.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_mcp_client.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_model_manager.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_models_hub.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_multi_provider_llm_driver.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_orchestrator.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_patcher.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_persona_system.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_repo_map.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_rules.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_sdk.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_security_healer.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_session.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_simple_ui_and_rules.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_smart_git.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_storage_manager.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_strands_agent.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_subagents.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_tui.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_tui_animations.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_tui_app.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_tui_app_screens.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_tui_pilot.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_verifier.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_viewport_engine.py +0 -0
- {k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_web_ui.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: k-cli-for-devs
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: K-CLI for Devs: Autonomous Self-Healing DevOps & Engineering Agent built with AWS Strands Agents SDK
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -92,14 +92,20 @@ pip install k-cli-for-devs
|
|
|
92
92
|
- [6. Smart Credit Saver ($2 vs $10 Financial Optimization Engine)](#6-smart-credit-saver-2-vs-10-financial-optimization-engine)
|
|
93
93
|
- [7. RateLimitGuard & Multi-Provider Model Auto-Rotation](#7-ratelimitguard--multi-provider-model-auto-rotation)
|
|
94
94
|
- [8. Autonomous Multi-Agent Workstation & Subagent Delegation](#8-autonomous-multi-agent-workstation--subagent-delegation)
|
|
95
|
+
- [9. Autonomous Time-Travel Checkpoints & Instant Rollback](#9-autonomous-time-travel-checkpoints--instant-rollback-k-cli-undo)
|
|
96
|
+
- [10. Persistent Self-Learning Project Memory](#10-persistent-self-learning-project-memory-kclimd--projectmemorymanager)
|
|
97
|
+
- [11. Standardized Quantitative Evaluation & Benchmark Scorecard](#11-standardized-quantitative-evaluation--benchmark-scorecard-k-cli-eval)
|
|
98
|
+
- [12. Autonomous Docker & CI/CD Pipeline Healer](#12-autonomous-docker--cicd-pipeline-healer-k-cli-cicd)
|
|
99
|
+
- [13. Global Ambient Error Interceptor Sentinel](#13-global-ambient-error-interceptor-sentinel-k-cli-wrap-cmd)
|
|
95
100
|
- [🖥️ 3 Unified Interface Tiers](#️-3-unified-interface-tiers)
|
|
96
101
|
- [🛡️ The 4 Autonomous Superpowers](#️-the-4-autonomous-superpowers)
|
|
97
|
-
- [🌟 The
|
|
102
|
+
- [🌟 The 20 Production-Grade Killer Features](#-the-20-production-grade-killer-features)
|
|
98
103
|
- [🏛️ System Architecture Diagram](#️-system-architecture-diagram)
|
|
99
104
|
- [📦 Installation & Quickstart](#-installation--quickstart)
|
|
100
105
|
- [💻 Comprehensive CLI Command Catalog](#-comprehensive-cli-command-catalog)
|
|
101
106
|
- [☁️ Amazon Bedrock AgentCore Export & Cloud Deployment](#️-amazon-bedrock-agentcore-export--cloud-deployment)
|
|
102
107
|
- [🧪 Test Suite & Reliability Scorecard](#-test-suite--reliability-scorecard)
|
|
108
|
+
- [📋 Official Live App Verification Report (16/16 Pass)](docs/LIVE_APP_VERIFICATION_REPORT.md)
|
|
103
109
|
- [🎬 5-Minute Championship Demo Video](#-5-minute-championship-demo-video)
|
|
104
110
|
- [📄 License & Authorship](#-license--authorship)
|
|
105
111
|
|
|
@@ -36,14 +36,20 @@ pip install k-cli-for-devs
|
|
|
36
36
|
- [6. Smart Credit Saver ($2 vs $10 Financial Optimization Engine)](#6-smart-credit-saver-2-vs-10-financial-optimization-engine)
|
|
37
37
|
- [7. RateLimitGuard & Multi-Provider Model Auto-Rotation](#7-ratelimitguard--multi-provider-model-auto-rotation)
|
|
38
38
|
- [8. Autonomous Multi-Agent Workstation & Subagent Delegation](#8-autonomous-multi-agent-workstation--subagent-delegation)
|
|
39
|
+
- [9. Autonomous Time-Travel Checkpoints & Instant Rollback](#9-autonomous-time-travel-checkpoints--instant-rollback-k-cli-undo)
|
|
40
|
+
- [10. Persistent Self-Learning Project Memory](#10-persistent-self-learning-project-memory-kclimd--projectmemorymanager)
|
|
41
|
+
- [11. Standardized Quantitative Evaluation & Benchmark Scorecard](#11-standardized-quantitative-evaluation--benchmark-scorecard-k-cli-eval)
|
|
42
|
+
- [12. Autonomous Docker & CI/CD Pipeline Healer](#12-autonomous-docker--cicd-pipeline-healer-k-cli-cicd)
|
|
43
|
+
- [13. Global Ambient Error Interceptor Sentinel](#13-global-ambient-error-interceptor-sentinel-k-cli-wrap-cmd)
|
|
39
44
|
- [🖥️ 3 Unified Interface Tiers](#️-3-unified-interface-tiers)
|
|
40
45
|
- [🛡️ The 4 Autonomous Superpowers](#️-the-4-autonomous-superpowers)
|
|
41
|
-
- [🌟 The
|
|
46
|
+
- [🌟 The 20 Production-Grade Killer Features](#-the-20-production-grade-killer-features)
|
|
42
47
|
- [🏛️ System Architecture Diagram](#️-system-architecture-diagram)
|
|
43
48
|
- [📦 Installation & Quickstart](#-installation--quickstart)
|
|
44
49
|
- [💻 Comprehensive CLI Command Catalog](#-comprehensive-cli-command-catalog)
|
|
45
50
|
- [☁️ Amazon Bedrock AgentCore Export & Cloud Deployment](#️-amazon-bedrock-agentcore-export--cloud-deployment)
|
|
46
51
|
- [🧪 Test Suite & Reliability Scorecard](#-test-suite--reliability-scorecard)
|
|
52
|
+
- [📋 Official Live App Verification Report (16/16 Pass)](docs/LIVE_APP_VERIFICATION_REPORT.md)
|
|
47
53
|
- [🎬 5-Minute Championship Demo Video](#-5-minute-championship-demo-video)
|
|
48
54
|
- [📄 License & Authorship](#-license--authorship)
|
|
49
55
|
|
|
@@ -947,14 +947,15 @@ class ConflictResolver:
|
|
|
947
947
|
pass
|
|
948
948
|
|
|
949
949
|
# Method 2: Recursive scan for conflict markers
|
|
950
|
-
ignored_dirs = {".git", ".venv", "k_cli_env", "venv", "node_modules", "build", "dist", "__pycache__", ".pytest_cache", "data"}
|
|
950
|
+
ignored_dirs = {".git", ".venv", "k_cli_env", "venv", "node_modules", "build", "dist", "__pycache__", ".pytest_cache", "data", "demo_production"}
|
|
951
|
+
ignored_exts = {".webm", ".png", ".jpg", ".jpeg", ".mp4", ".mp3", ".wav", ".tar", ".gz", ".zip", ".whl", ".pyc", ".so", ".bin", ".gguf"}
|
|
951
952
|
for root, dirs, files in os.walk(str(target)):
|
|
952
953
|
dirs[:] = [d for d in dirs if d not in ignored_dirs and not d.startswith(".")]
|
|
953
954
|
for fname in files:
|
|
954
955
|
if fname.startswith("."):
|
|
955
956
|
continue
|
|
956
957
|
fpath = (Path(root) / fname).resolve()
|
|
957
|
-
if not fpath.is_relative_to(target):
|
|
958
|
+
if not fpath.is_relative_to(target) or fpath.suffix.lower() in ignored_exts:
|
|
958
959
|
continue
|
|
959
960
|
try:
|
|
960
961
|
with open(fpath, "r", encoding="utf-8", errors="ignore") as f:
|
|
@@ -966,7 +967,7 @@ class ConflictResolver:
|
|
|
966
967
|
|
|
967
968
|
for fpath in sorted(conflicted_files):
|
|
968
969
|
try:
|
|
969
|
-
content = fpath.read_text(encoding="utf-8")
|
|
970
|
+
content = fpath.read_text(encoding="utf-8", errors="replace")
|
|
970
971
|
blocks = self.parse_conflict_blocks(content, file_path=str(fpath))
|
|
971
972
|
all_conflicts.extend(blocks)
|
|
972
973
|
except Exception as e:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
server.py - FastAPI Web UI Server & Async (((((((REST / WebSocket if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) API for K-CLI Engine
|
|
2
|
+
server.py - FastAPI Web UI Server & Async ((((((((REST / WebSocket if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) if WebSocket != 0 else 0) API for K-CLI Engine
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
@@ -447,6 +447,48 @@ def create_app() -> FastAPI:
|
|
|
447
447
|
)
|
|
448
448
|
return res.to_dict()
|
|
449
449
|
|
|
450
|
+
@app.api_route("/api/eval", methods=["GET", "POST"])
|
|
451
|
+
async def run_evaluation(repo_path: str = "."):
|
|
452
|
+
from k_cli.tools.benchmark_harness import EvaluationHarness
|
|
453
|
+
import dataclasses
|
|
454
|
+
harness = EvaluationHarness(workspace_dir=repo_path)
|
|
455
|
+
report = harness.run_full_evaluation()
|
|
456
|
+
return dataclasses.asdict(report)
|
|
457
|
+
|
|
458
|
+
@app.get("/api/checkpoints")
|
|
459
|
+
async def list_checkpoints(repo_path: str = "."):
|
|
460
|
+
from k_cli.git.checkpoint import CheckpointManager
|
|
461
|
+
mgr = CheckpointManager(workspace_dir=repo_path)
|
|
462
|
+
return {"checkpoints": mgr.list_checkpoints()}
|
|
463
|
+
|
|
464
|
+
@app.post("/api/checkpoints/rollback")
|
|
465
|
+
async def rollback_checkpoint(repo_path: str = "."):
|
|
466
|
+
from k_cli.git.checkpoint import CheckpointManager
|
|
467
|
+
mgr = CheckpointManager(workspace_dir=repo_path)
|
|
468
|
+
success, msg = mgr.rollback_last_checkpoint()
|
|
469
|
+
return {"success": success, "message": msg}
|
|
470
|
+
|
|
471
|
+
@app.get("/api/memory")
|
|
472
|
+
async def get_project_memory(repo_path: str = "."):
|
|
473
|
+
from k_cli.core.memory import ProjectMemoryManager
|
|
474
|
+
mgr = ProjectMemoryManager(workspace_dir=repo_path)
|
|
475
|
+
return {"memory": mgr.load_memory()}
|
|
476
|
+
|
|
477
|
+
@app.post("/api/cicd/audit")
|
|
478
|
+
async def audit_cicd(repo_path: str = ".", auto_apply: bool = False):
|
|
479
|
+
from k_cli.tools.cicd_healer import CICDHealer
|
|
480
|
+
import dataclasses
|
|
481
|
+
healer = CICDHealer(workspace_dir=repo_path)
|
|
482
|
+
results = []
|
|
483
|
+
wf_path = Path(repo_path) / ".github" / "workflows"
|
|
484
|
+
if wf_path.exists():
|
|
485
|
+
for wf in list(wf_path.glob("*.yml")) + list(wf_path.glob("*.yaml")):
|
|
486
|
+
results.append(dataclasses.asdict(healer.audit_and_heal_workflow(str(wf), auto_apply=auto_apply)))
|
|
487
|
+
df_path = Path(repo_path) / "Dockerfile"
|
|
488
|
+
if df_path.exists():
|
|
489
|
+
results.append(dataclasses.asdict(healer.audit_and_heal_dockerfile(str(df_path), auto_apply=auto_apply)))
|
|
490
|
+
return {"results": results}
|
|
491
|
+
|
|
450
492
|
# WebSocket for real-time agent token streaming
|
|
451
493
|
@app.websocket("/ws/agent")
|
|
452
494
|
async def websocket_agent(websocket: WebSocket):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: k-cli-for-devs
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: K-CLI for Devs: Autonomous Self-Healing DevOps & Engineering Agent built with AWS Strands Agents SDK
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -92,14 +92,20 @@ pip install k-cli-for-devs
|
|
|
92
92
|
- [6. Smart Credit Saver ($2 vs $10 Financial Optimization Engine)](#6-smart-credit-saver-2-vs-10-financial-optimization-engine)
|
|
93
93
|
- [7. RateLimitGuard & Multi-Provider Model Auto-Rotation](#7-ratelimitguard--multi-provider-model-auto-rotation)
|
|
94
94
|
- [8. Autonomous Multi-Agent Workstation & Subagent Delegation](#8-autonomous-multi-agent-workstation--subagent-delegation)
|
|
95
|
+
- [9. Autonomous Time-Travel Checkpoints & Instant Rollback](#9-autonomous-time-travel-checkpoints--instant-rollback-k-cli-undo)
|
|
96
|
+
- [10. Persistent Self-Learning Project Memory](#10-persistent-self-learning-project-memory-kclimd--projectmemorymanager)
|
|
97
|
+
- [11. Standardized Quantitative Evaluation & Benchmark Scorecard](#11-standardized-quantitative-evaluation--benchmark-scorecard-k-cli-eval)
|
|
98
|
+
- [12. Autonomous Docker & CI/CD Pipeline Healer](#12-autonomous-docker--cicd-pipeline-healer-k-cli-cicd)
|
|
99
|
+
- [13. Global Ambient Error Interceptor Sentinel](#13-global-ambient-error-interceptor-sentinel-k-cli-wrap-cmd)
|
|
95
100
|
- [🖥️ 3 Unified Interface Tiers](#️-3-unified-interface-tiers)
|
|
96
101
|
- [🛡️ The 4 Autonomous Superpowers](#️-the-4-autonomous-superpowers)
|
|
97
|
-
- [🌟 The
|
|
102
|
+
- [🌟 The 20 Production-Grade Killer Features](#-the-20-production-grade-killer-features)
|
|
98
103
|
- [🏛️ System Architecture Diagram](#️-system-architecture-diagram)
|
|
99
104
|
- [📦 Installation & Quickstart](#-installation--quickstart)
|
|
100
105
|
- [💻 Comprehensive CLI Command Catalog](#-comprehensive-cli-command-catalog)
|
|
101
106
|
- [☁️ Amazon Bedrock AgentCore Export & Cloud Deployment](#️-amazon-bedrock-agentcore-export--cloud-deployment)
|
|
102
107
|
- [🧪 Test Suite & Reliability Scorecard](#-test-suite--reliability-scorecard)
|
|
108
|
+
- [📋 Official Live App Verification Report (16/16 Pass)](docs/LIVE_APP_VERIFICATION_REPORT.md)
|
|
103
109
|
- [🎬 5-Minute Championship Demo Video](#-5-minute-championship-demo-video)
|
|
104
110
|
- [📄 License & Authorship](#-license--authorship)
|
|
105
111
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "k-cli-for-devs"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.5"
|
|
8
8
|
description = "K-CLI for Devs: Autonomous Self-Healing DevOps & Engineering Agent built with AWS Strands Agents SDK"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{k_cli_for_devs-1.0.4 → k_cli_for_devs-1.0.5}/tests/test_adversarial_m6_patcher_git_session.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|