claude-self-reflect 6.0.0 → 6.0.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 +0 -3
- package/docker-compose.yaml +0 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -175,9 +175,6 @@ Your code quality displayed live as you work:
|
|
|
175
175
|
3. **Quality Scoring**: Weighted scoring normalized by lines of code
|
|
176
176
|
4. **Statusline Display**: Real-time feedback as you code
|
|
177
177
|
|
|
178
|
-
> [!TIP]
|
|
179
|
-
> Run `python scripts/session_quality_tracker.py` to analyze your current session quality!
|
|
180
|
-
|
|
181
178
|
</details>
|
|
182
179
|
|
|
183
180
|
## Key Features
|
package/docker-compose.yaml
CHANGED
|
@@ -40,8 +40,6 @@ services:
|
|
|
40
40
|
volumes:
|
|
41
41
|
- ${CLAUDE_LOGS_PATH:-~/.claude/projects}:/logs:ro
|
|
42
42
|
- ${CONFIG_PATH:-~/.claude-self-reflect/config}:/config
|
|
43
|
-
- ./src:/app/src:ro
|
|
44
|
-
- ./shared:/app/shared:ro
|
|
45
43
|
environment:
|
|
46
44
|
- QDRANT_URL=http://qdrant:6333
|
|
47
45
|
- STATE_FILE=/config/imported-files.json
|
|
@@ -71,8 +69,6 @@ services:
|
|
|
71
69
|
volumes:
|
|
72
70
|
- ${CLAUDE_LOGS_PATH:-~/.claude/projects}:/logs:ro
|
|
73
71
|
- ${CONFIG_PATH:-~/.claude-self-reflect/config}:/config
|
|
74
|
-
- ./src:/app/src:ro
|
|
75
|
-
- ./shared:/app/shared:ro
|
|
76
72
|
- /tmp:/tmp
|
|
77
73
|
environment:
|
|
78
74
|
- QDRANT_URL=http://qdrant:6333
|
|
@@ -103,8 +99,6 @@ services:
|
|
|
103
99
|
volumes:
|
|
104
100
|
- ${CLAUDE_LOGS_PATH:-~/.claude/projects}:/logs:ro
|
|
105
101
|
- ${CONFIG_PATH:-~/.claude-self-reflect/config}:/config
|
|
106
|
-
- ./src:/app/src:ro
|
|
107
|
-
- ./shared:/app/shared:ro
|
|
108
102
|
environment:
|
|
109
103
|
- QDRANT_URL=http://qdrant:6333
|
|
110
104
|
- STATE_FILE=/config/streaming-state.json # FIXED: Use streaming-specific state file
|
|
@@ -144,8 +138,6 @@ services:
|
|
|
144
138
|
volumes:
|
|
145
139
|
- ${CLAUDE_LOGS_PATH:-~/.claude/projects}:/logs:ro
|
|
146
140
|
- ${CONFIG_PATH:-~/.claude-self-reflect/config}:/config
|
|
147
|
-
- ./src:/app/src:ro
|
|
148
|
-
- ./shared:/app/shared:ro
|
|
149
141
|
environment:
|
|
150
142
|
- QDRANT_URL=http://qdrant:6333
|
|
151
143
|
- STATE_FILE=/config/imported-files.json
|
|
@@ -181,8 +173,6 @@ services:
|
|
|
181
173
|
volumes:
|
|
182
174
|
- ${CLAUDE_LOGS_PATH:-~/.claude/projects}:/logs:ro
|
|
183
175
|
- ${CONFIG_PATH:-~/.claude-self-reflect/config}:/config
|
|
184
|
-
- ./src:/app/src:ro
|
|
185
|
-
- ./shared:/app/shared:ro
|
|
186
176
|
environment:
|
|
187
177
|
- QDRANT_URL=http://qdrant:6333
|
|
188
178
|
- STATE_FILE=/config/csr-watcher.json
|