Skip to content
Open
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
10 changes: 5 additions & 5 deletions .ai-setup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ version:
fi

check:
@VERSION=$(VERSION) ./scripts/test-setup.sh
@cd .. && VERSION=$(VERSION) ./scripts/test-setup.sh

extra-check:
@CLAUDE_MARKETPLACE_NAMES="$(CLAUDE_MARKETPLACE_NAMES)" \
@cd .. && CLAUDE_MARKETPLACE_NAMES="$(CLAUDE_MARKETPLACE_NAMES)" \
CLAUDE_EXPECTED_PLUGINS="$(CLAUDE_PLUGINS)" \
./scripts/test-extras.sh

check-context:
@./scripts/test-context.sh
@cd .. && ./scripts/test-context.sh

codex-context:
@./scripts/codex-context.sh
@cd .. && ./scripts/codex-context.sh

mise-package:
@set -e; \
Expand Down Expand Up @@ -82,7 +82,7 @@ mise-package:

mise-install: mise-package
@echo "Install mise tools"
@mise install --quiet
@cd .. && mise install --quiet

agents-install: agents agents-cli agents-skills

Expand Down
4 changes: 3 additions & 1 deletion .ai-setup/SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
Подходит для базовых Linux-дистрибутивов (Ubuntu-tested) и macOS.

```bash
make
cd .ai-setup && make
# или
make -C .ai-setup
```

По умолчанию `make` запускает target `ai`, который последовательно:
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ check_direnv_port() {
fi

if [ ! -f .envrc ]; then
fail ".envrc present"
fail ".envrc missing"
return 1
fi

Expand Down