create-claude-context 1.2.0 → 1.2.1
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.
- package/README.md +29 -6
- package/bin/create-claude-context.js +15 -1
- package/lib/ai-orchestrator.js +423 -0
- package/lib/call-tracer.js +444 -0
- package/lib/detector.js +83 -0
- package/lib/environment-detector.js +239 -0
- package/lib/index.js +128 -27
- package/lib/placeholder.js +80 -19
- package/lib/static-analyzer.js +729 -0
- package/lib/template-populator.js +835 -0
- package/package.json +1 -1
- package/templates/base/settings.json +1 -77
package/package.json
CHANGED
|
@@ -1,79 +1,3 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
3
|
-
"version": "1.2.0",
|
|
4
|
-
"context_engineering": {
|
|
5
|
-
"enabled": true,
|
|
6
|
-
"max_context_tokens": 200000,
|
|
7
|
-
"max_output_tokens": 30000,
|
|
8
|
-
"target_utilization": 0.40,
|
|
9
|
-
"compact_trigger": 0.35
|
|
10
|
-
},
|
|
11
|
-
"rpi_workflow": {
|
|
12
|
-
"enabled": true,
|
|
13
|
-
"phases": ["research", "plan", "implement"],
|
|
14
|
-
"require_human_approval": true,
|
|
15
|
-
"auto_doc_update": true,
|
|
16
|
-
"research_timeout_minutes": 30,
|
|
17
|
-
"plan_timeout_minutes": 20
|
|
18
|
-
},
|
|
19
|
-
"documentation": {
|
|
20
|
-
"self_maintaining": true,
|
|
21
|
-
"verify_after_changes": true,
|
|
22
|
-
"line_number_tolerance": 10,
|
|
23
|
-
"auto_commit_docs": false,
|
|
24
|
-
"semantic_anchors_enabled": true
|
|
25
|
-
},
|
|
26
|
-
"session": {
|
|
27
|
-
"auto_save_enabled": true,
|
|
28
|
-
"auto_save_interval_minutes": 5,
|
|
29
|
-
"require_handoff_on_end": true,
|
|
30
|
-
"max_history_days": 30,
|
|
31
|
-
"checkpoint_on_phase_change": true
|
|
32
|
-
},
|
|
33
|
-
"automation": {
|
|
34
|
-
"auto_generate_code_map": true,
|
|
35
|
-
"rebuild_on_commit": true,
|
|
36
|
-
"semantic_anchors_enabled": true,
|
|
37
|
-
"drift_detection_enabled": true,
|
|
38
|
-
"gotcha_extraction_enabled": false
|
|
39
|
-
},
|
|
40
|
-
"hooks": {
|
|
41
|
-
"pre_commit_enabled": true,
|
|
42
|
-
"block_on_drift": false,
|
|
43
|
-
"post_commit_rebuild": true
|
|
44
|
-
},
|
|
45
|
-
"agents": {
|
|
46
|
-
"default": "context-engineer",
|
|
47
|
-
"auto_select": true,
|
|
48
|
-
"fallback": "core-architect"
|
|
49
|
-
},
|
|
50
|
-
"commands": {
|
|
51
|
-
"rpi_commands": ["/rpi-research", "/rpi-plan", "/rpi-implement"],
|
|
52
|
-
"validation_commands": ["/verify-docs-current", "/validate-all"],
|
|
53
|
-
"session_commands": ["/session-save", "/session-resume"],
|
|
54
|
-
"sync_commands": ["/auto-sync"]
|
|
55
|
-
},
|
|
56
|
-
"validation": {
|
|
57
|
-
"on_commit": true,
|
|
58
|
-
"line_accuracy_threshold": 60,
|
|
59
|
-
"link_check_external": false
|
|
60
|
-
},
|
|
61
|
-
"logging": {
|
|
62
|
-
"level": "info",
|
|
63
|
-
"file": ".claude/logs/claude.log",
|
|
64
|
-
"max_size_mb": 10
|
|
65
|
-
},
|
|
66
|
-
"telemetry": {
|
|
67
|
-
"enabled": false,
|
|
68
|
-
"events": {
|
|
69
|
-
"command_usage": true,
|
|
70
|
-
"agent_usage": true,
|
|
71
|
-
"context_metrics": true,
|
|
72
|
-
"error_reports": true
|
|
73
|
-
},
|
|
74
|
-
"privacy": {
|
|
75
|
-
"anonymize_paths": true,
|
|
76
|
-
"exclude_content": true
|
|
77
|
-
}
|
|
78
|
-
}
|
|
2
|
+
"$schema": "https://json.schemastore.org/claude-code-settings.json"
|
|
79
3
|
}
|