craft-code 0.1.6__tar.gz → 0.1.8__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.6 → craft_code-0.1.8}/.github/workflows/release.yml +1 -1
- {craft_code-0.1.6 → craft_code-0.1.8}/PKG-INFO +1 -1
- {craft_code-0.1.6 → craft_code-0.1.8}/pyproject.toml +1 -1
- {craft_code-0.1.6 → craft_code-0.1.8}/scripts/generate_formula.sh +4 -5
- {craft_code-0.1.6 → craft_code-0.1.8}/.env.example +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/.github/workflows/claude-code-review.yml +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/.github/workflows/claude.yml +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/.gitignore +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/AGENTS.md +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/LICENSE +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/README.md +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/AGENTS.md +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/__init__.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/__main__.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/agent.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/auth.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/cli.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/config.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/interrupt_handler.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/prompts.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/skills/code-review/SKILL.md +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/skills/testing/SKILL.md +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/code_craft/tools.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/example.py +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/skills/code-review/SKILL.md +0 -0
- {craft_code-0.1.6 → craft_code-0.1.8}/skills/testing/SKILL.md +0 -0
|
@@ -64,7 +64,7 @@ jobs:
|
|
|
64
64
|
run: echo "version=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT"
|
|
65
65
|
|
|
66
66
|
- name: Install homebrew-pypi-poet
|
|
67
|
-
run: pip install homebrew-pypi-poet craft-code==${{ steps.version.outputs.version }}
|
|
67
|
+
run: pip install setuptools homebrew-pypi-poet craft-code==${{ steps.version.outputs.version }}
|
|
68
68
|
|
|
69
69
|
- name: Generate formula
|
|
70
70
|
run: ./scripts/generate_formula.sh ${{ steps.version.outputs.version }}
|
|
@@ -42,18 +42,17 @@ fi
|
|
|
42
42
|
echo " sha256: ${SHA256}"
|
|
43
43
|
|
|
44
44
|
# ---- 2. Install homebrew-pypi-poet if missing --------------------------
|
|
45
|
-
if !
|
|
45
|
+
if ! command -v poet &>/dev/null; then
|
|
46
46
|
echo "==> Installing homebrew-pypi-poet..."
|
|
47
|
-
pip install --quiet homebrew-pypi-poet
|
|
47
|
+
pip install --quiet setuptools homebrew-pypi-poet
|
|
48
48
|
fi
|
|
49
49
|
|
|
50
50
|
# ---- 3. Generate resource blocks with poet -----------------------------
|
|
51
51
|
echo "==> Generating resource blocks (this may take a moment)..."
|
|
52
|
-
RESOURCES=$(
|
|
52
|
+
RESOURCES=$(poet craft-code)
|
|
53
53
|
|
|
54
54
|
if [[ -z "${RESOURCES}" ]]; then
|
|
55
|
-
echo "ERROR: poet
|
|
56
|
-
echo " Alternatively, build and install locally first: pip install -e ."
|
|
55
|
+
echo "ERROR: poet returned empty output for craft-code."
|
|
57
56
|
exit 1
|
|
58
57
|
fi
|
|
59
58
|
|
|
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
|