craft-code 0.1.7__tar.gz → 0.1.9__tar.gz
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.
- {craft_code-0.1.7 → craft_code-0.1.9}/.github/workflows/release.yml +4 -2
- {craft_code-0.1.7 → craft_code-0.1.9}/PKG-INFO +1 -1
- {craft_code-0.1.7 → craft_code-0.1.9}/pyproject.toml +1 -1
- {craft_code-0.1.7 → craft_code-0.1.9}/scripts/generate_formula.sh +8 -7
- {craft_code-0.1.7 → craft_code-0.1.9}/.env.example +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/.github/workflows/claude-code-review.yml +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/.github/workflows/claude.yml +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/.gitignore +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/AGENTS.md +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/LICENSE +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/README.md +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/AGENTS.md +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/__init__.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/__main__.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/agent.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/auth.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/cli.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/config.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/interrupt_handler.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/prompts.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/skills/code-review/SKILL.md +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/skills/testing/SKILL.md +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/code_craft/tools.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/example.py +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/skills/code-review/SKILL.md +0 -0
- {craft_code-0.1.7 → craft_code-0.1.9}/skills/testing/SKILL.md +0 -0
|
@@ -63,8 +63,10 @@ jobs:
|
|
|
63
63
|
id: version
|
|
64
64
|
run: echo "version=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT"
|
|
65
65
|
|
|
66
|
-
- name: Install
|
|
67
|
-
run:
|
|
66
|
+
- name: Install dependencies
|
|
67
|
+
run: |
|
|
68
|
+
pip install --upgrade pip setuptools wheel
|
|
69
|
+
pip install homebrew-pypi-poet craft-code==${{ steps.version.outputs.version }}
|
|
68
70
|
|
|
69
71
|
- name: Generate formula
|
|
70
72
|
run: ./scripts/generate_formula.sh ${{ steps.version.outputs.version }}
|
|
@@ -41,15 +41,16 @@ else
|
|
|
41
41
|
fi
|
|
42
42
|
echo " sha256: ${SHA256}"
|
|
43
43
|
|
|
44
|
-
# ---- 2. Install homebrew-pypi-poet
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
44
|
+
# ---- 2. Install homebrew-pypi-poet ------------------------------------
|
|
45
|
+
pip install --quiet setuptools homebrew-pypi-poet
|
|
46
|
+
|
|
47
|
+
# Resolve poet from the same Python environment (avoids shebang mismatch
|
|
48
|
+
# when multiple Python installations exist, e.g. on macOS GitHub runners)
|
|
49
|
+
POET=$(python3 -c "import sysconfig; print(sysconfig.get_path('scripts'))")/poet
|
|
49
50
|
|
|
50
|
-
# ---- 3. Generate resource blocks with poet
|
|
51
|
+
# ---- 3. Generate resource blocks with poet ----------------------------
|
|
51
52
|
echo "==> Generating resource blocks (this may take a moment)..."
|
|
52
|
-
RESOURCES=$(
|
|
53
|
+
RESOURCES=$("${POET}" craft-code)
|
|
53
54
|
|
|
54
55
|
if [[ -z "${RESOURCES}" ]]; then
|
|
55
56
|
echo "ERROR: poet returned empty output for craft-code."
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|