[2026-06-18] 스킬 파일에 git push 스텝 추가 (morning/midday/evening)
This commit is contained in:
@@ -33,3 +33,11 @@ Analyze today's trading result and write `reports/daily/YYYY-MM-DD.md`.
|
|||||||
|
|
||||||
5. Discord:
|
5. Discord:
|
||||||
Send a concise result summary. If a proposal file was created, include that manual approval is required.
|
Send a concise result summary. If a proposal file was created, include that manual approval is required.
|
||||||
|
|
||||||
|
6. Git commit & push:
|
||||||
|
Stage and commit the daily report (and proposal file if created), then push to origin master.
|
||||||
|
```bash
|
||||||
|
git add reports/daily/YYYY-MM-DD.md reports/proposals/YYYY-MM-DD_strategy_proposal.md # only if files exist
|
||||||
|
git commit -m "[YYYY-MM-DD] 저녁 결산 — <trades>건 / <wins>승 <losses>패 / <pnl>원 (<brief exit summary>)"
|
||||||
|
git push origin master
|
||||||
|
```
|
||||||
|
|||||||
@@ -67,5 +67,13 @@ print('Discord 전송 완료')
|
|||||||
"
|
"
|
||||||
```
|
```
|
||||||
|
|
||||||
### 5. 완료
|
### 5. Git commit & push
|
||||||
|
`data/midday_context.json`을 커밋하고 push한다:
|
||||||
|
```bash
|
||||||
|
git add data/midday_context.json
|
||||||
|
git commit -m "[YYYY-MM-DD] 장중 분석 — <한 줄 요약>"
|
||||||
|
git push origin master
|
||||||
|
```
|
||||||
|
|
||||||
|
### 6. 완료
|
||||||
분석 요약을 한 줄로 출력하고 종료한다.
|
분석 요약을 한 줄로 출력하고 종료한다.
|
||||||
|
|||||||
@@ -91,6 +91,14 @@ python app/ai/morning.py --print
|
|||||||
python app/ai/morning.py --send-discord
|
python app/ai/morning.py --send-discord
|
||||||
```
|
```
|
||||||
|
|
||||||
### 6. 완료
|
### 6. Git commit & push
|
||||||
|
`data/daily_context.json`을 커밋하고 push한다:
|
||||||
|
```bash
|
||||||
|
git add data/daily_context.json
|
||||||
|
git commit -m "[YYYY-MM-DD] 장전 분석 — <한 줄 시장 요약>"
|
||||||
|
git push origin master
|
||||||
|
```
|
||||||
|
|
||||||
|
### 7. 완료
|
||||||
분석 요약을 한 줄로 출력하고 종료한다.
|
분석 요약을 한 줄로 출력하고 종료한다.
|
||||||
이 명령 안에서는 `/start-bot` 또는 `python scripts/start_bot.py`를 실행하지 않는다.
|
이 명령 안에서는 `/start-bot` 또는 `python scripts/start_bot.py`를 실행하지 않는다.
|
||||||
|
|||||||
Reference in New Issue
Block a user