Skip to content

Commit 3ef8dc4

Browse files
refactor(docs): configuration management system
stats: lines: "+2014/-613 (net +1401)" files: 11 complexity: "Stable complexity"
1 parent d4f97e1 commit 3ef8dc4

File tree

12 files changed

+2031
-607
lines changed

12 files changed

+2031
-607
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.9] - 2026-03-26
11+
12+
### Docs
13+
- Update README.md
14+
- Update README_OLD.md
15+
- Update docs/API.md
16+
- Update docs/CI_CD_INTEGRATION.md
17+
- Update docs/CI_CD_INTEGRATION_OLD.md
18+
19+
### Other
20+
- Update Makefile
21+
- Update VERSION
22+
- Update docker-entrypoint.sh
23+
- Update strategy/__init__.py
24+
1025
## [0.1.7] - 2026-03-26
1126

1227
### Other

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ COPY requirements.txt .
1919
RUN pip install --no-cache-dir -r requirements.txt
2020

2121
# Install SprintStrat with all integrations
22-
RUN pip install --no-cache-dir entry[all]
22+
RUN pip install --no-cache-dir planfile[all]
2323

2424
# Install LLX
2525
RUN pip install --no-cache-dir llx
@@ -41,7 +41,7 @@ EXPOSE 11434
4141

4242
# Health check
4343
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
44-
CMD entry --version || exit 1
44+
CMD planfile --version || exit 1
4545

4646
# Entry point
4747
ENTRYPOINT ["docker-entrypoint.sh"]

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ci-loop:
4949
echo "Usage: make ci-loop STRATEGY=<strategy.yaml> [BACKENDS=github,jira] [MAX_ITERATIONS=5]"; \
5050
exit 1; \
5151
fi
52-
entry auto loop \
52+
planfile auto loop \
5353
--strategy $(STRATEGY) \
5454
--project . \
5555
--backend $(or $(BACKENDS),github) \
@@ -75,7 +75,7 @@ format:
7575
example-github:
7676
@echo "Running example with GitHub backend..."
7777
@echo "Make sure GITHUB_TOKEN and GITHUB_REPO are set"
78-
entry auto loop \
78+
planfile auto loop \
7979
--strategy examples/strategies/onboarding.yaml \
8080
--project . \
8181
--backend github \
@@ -85,7 +85,7 @@ example-github:
8585
example-jira:
8686
@echo "Running example with Jira backend..."
8787
@echo "Make sure JIRA_URL, JIRA_EMAIL, JIRA_TOKEN, JIRA_PROJECT are set"
88-
entry auto loop \
88+
planfile auto loop \
8989
--strategy examples/strategies/ecommerce-mvp.yaml \
9090
--project . \
9191
--backend jira \
@@ -94,7 +94,7 @@ example-jira:
9494

9595
# Monitoring
9696
status:
97-
entry auto ci-status
97+
planfile auto ci-status
9898

9999
logs:
100100
docker-compose logs -f sprintstrat-runner
@@ -143,7 +143,7 @@ pipeline-docker:
143143
make docker-build
144144
docker-compose up -d
145145
sleep 10
146-
docker-compose exec sprintstrat-runner entry auto loop \
146+
docker-compose exec sprintstrat-runner planfile auto loop \
147147
--strategy /app/strategy.yaml \
148148
--project /workspace \
149149
--backend github \
@@ -152,7 +152,7 @@ pipeline-docker:
152152
# Advanced examples
153153
full-loop:
154154
@echo "Running full bug-fix loop with auto-fix..."
155-
entry auto loop \
155+
planfile auto loop \
156156
--strategy examples/strategies/onboarding.yaml \
157157
--project . \
158158
--backend github \
@@ -161,7 +161,7 @@ full-loop:
161161
--output full-loop-results.json
162162

163163
strategy-review:
164-
entry strategy review \
164+
planfile strategy review \
165165
--strategy examples/strategies/onboarding.yaml \
166166
--project . \
167167
--backend github

0 commit comments

Comments
 (0)