Skip to content

Commit 3fdbf6c

Browse files
chore: remove bin/install.sh, add repomix task
Delete unused install.sh (pre-commit is handled by `task pre-commit`). Add repomix task to taskfile.yml. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9486265 commit 3fdbf6c

3 files changed

Lines changed: 25 additions & 34 deletions

File tree

bin/.gitkeep

Whitespace-only changes.

bin/install.sh

Lines changed: 0 additions & 34 deletions
This file was deleted.

taskfile.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ tasks:
2727
cmds:
2828
- task --list
2929

30+
# TODO: update this
3031
install:
3132
desc: "Install project dependencies"
3233
cmds:
@@ -76,3 +77,27 @@ tasks:
7677
desc: "Check bash scripts"
7778
cmds:
7879
- checkbashism -x {{.ROOT_DIR}}/app/*.sh
80+
81+
repomix:
82+
desc: "Create llm snapshot of repo"
83+
preconditions:
84+
- sh: command -v repomix 2>/dev/null
85+
msg: "repomix is not installed. Install with: npm install -g repomix"
86+
cmds:
87+
- |
88+
repomix \
89+
--style markdown \
90+
--compress \
91+
--remove-comments \
92+
--remove-empty-lines \
93+
--truncate-base64
94+
sources:
95+
- "**/*.py"
96+
- "**/*.toml"
97+
- "**/*.yml"
98+
- "**/*.yaml"
99+
- "**/*.md"
100+
- "**/*.json"
101+
- ".repomix*"
102+
generates:
103+
- repomix-output.md

0 commit comments

Comments
 (0)