Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.obsidian/
OME/.local
12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ NC := \033[0m
PATH := $(HOME)/.local/bin:/usr/local/bin:/opt/homebrew/bin:$(PATH)
VERSION ?= 0.2.0

NPM ?= mise exec -- npm
NPM ?= mise exec -- env npm_config_prefix=$(HOME)/.local npm
CLAUDE ?= mise exec -- claude
SKILLS_NPX ?= mise exec -- npx
SKILLS ?= $(SKILLS_NPX) skills
Expand Down Expand Up @@ -99,8 +99,14 @@ agents-cli:
@if command -v ccbox >/dev/null 2>&1; then \
echo "Install ccbox - already exists"; \
elif command -v brew >/dev/null 2>&1; then \
brew tap diskd-ai/ccbox && brew install ccbox; \
echo "Install ccbox - installed via brew"; \
if brew tap diskd-ai/ccbox && brew install ccbox; then \
echo "Install ccbox - installed via brew"; \
elif command -v curl >/dev/null 2>&1; then \
curl -fsSL -H 'Cache-Control: no-cache' -o - https://raw.githubusercontent.com/diskd-ai/ccbox/main/scripts/install.sh | /bin/bash; \
echo "Install ccbox - installed via script (brew failed)"; \
else \
echo "⚠️ ccbox: brew install failed and curl is unavailable"; \
fi; \
elif command -v curl >/dev/null 2>&1; then \
curl -fsSL -H 'Cache-Control: no-cache' -o - https://raw.githubusercontent.com/diskd-ai/ccbox/main/scripts/install.sh | /bin/bash; \
echo "Install ccbox - installed via script"; \
Expand Down
Loading