conduct-cli 0.4.69__tar.gz → 0.4.70__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.
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/PKG-INFO +1 -1
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/pyproject.toml +1 -1
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/main.py +4 -3
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli.egg-info/PKG-INFO +1 -1
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/README.md +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/setup.cfg +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/setup.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/__init__.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/api.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/guard.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/guardmcp.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/hook_precompact_template.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/hook_session_start_template.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/hook_template.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli/mcp_server.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli.egg-info/SOURCES.txt +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli.egg-info/dependency_links.txt +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli.egg-info/entry_points.txt +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli.egg-info/requires.txt +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/src/conduct_cli.egg-info/top_level.txt +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/tests/test_guard_policy.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/tests/test_guard_savings.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/tests/test_hook_syntax.py +0 -0
- {conduct_cli-0.4.69 → conduct_cli-0.4.70}/tests/test_switch.py +0 -0
|
@@ -2209,14 +2209,15 @@ def cmd_session_report(args):
|
|
|
2209
2209
|
else:
|
|
2210
2210
|
archetype = "Execution-Focused Builder"
|
|
2211
2211
|
|
|
2212
|
+
scores_raw = stats.get("scores", {})
|
|
2212
2213
|
payload = {
|
|
2213
2214
|
"developer": developer,
|
|
2214
2215
|
"hostname": hostname,
|
|
2215
2216
|
"archetype": archetype,
|
|
2216
2217
|
"competency_scores": {
|
|
2217
|
-
"
|
|
2218
|
-
"
|
|
2219
|
-
"
|
|
2218
|
+
"Execution": scores_raw.get("Execution", scores_raw.get("execution", autonomy_score)),
|
|
2219
|
+
"Planning": scores_raw.get("Planning", scores_raw.get("planning", planning_ratio)),
|
|
2220
|
+
"Engineering": scores_raw.get("Engineering", scores_raw.get("engineering", commits)),
|
|
2220
2221
|
},
|
|
2221
2222
|
"total_sessions": sessions,
|
|
2222
2223
|
"tools_detected": top_tools,
|
|
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
|