view --main btca-cli-skill-dlya-upravleniya-resursami-i-zaprosami.md
btca-cli: Скилл для управления ресурсами и запросами
//
Используйте интерфейс командной строки btca для работы с локальными ресурсами и получения ответов, основанных на исходном коде. Применяйте эту функцию при настройке btca в проекте, подключении провайдера, добавлении или управлении ресурсами, а также при задавании вопросов с помощью команд btca. Активируйте эту функцию, когда пользователь говорит "использовать btca" или когда ему требуется более детальное исследование конкретной библиотеки или фреймворка.
SKILL.md
agents
openai.yaml
106 B
readonly
--- lines
---
name: btca-cli
description: Operate the btca CLI for local resources and source-first answers. Use when setting up btca in a project, connecting a provider, adding or managing resources, and asking questions via btca commands. Invoke this skill when the user says "use btca" or needs to do more detailed research on a specific library or framework.
---
# btca CLI
`btca` is a source-first research CLI. It hydrates resources (git, local, npm) into searchable context, then answers questions grounded in those sources. Use configured resources for ongoing work, or one-off anonymous resources directly in `btca ask`.
Full CLI reference: https://docs.btca.dev/guides/cli-reference
Add resources:
```bash
# Git resource
btca add -n svelte-dev https://github.com/sveltejs/svelte.dev
# Local directory
btca add -n my-docs -t local /absolute/path/to/docs
# npm package
btca add npm:@types/node@22.10.1 -n node-types -t npm
```
Verify resources:
```bash
btca resources
```
Ask a question:
```bash
btca ask -r svelte-dev -q "How do I define remote functions?"
```
## Common Tasks
- Ask with multiple resources:
```bash
btca ask -r react -r typescript -q "How do I type useState?"
```
- Ask with anonymous one-off resources (not saved to config):
```bash
# One-off git repo
btca ask -r https://github.com/sveltejs/svelte -q "Where is the implementation of writable stores?"
# One-off npm package
btca ask -r npm:react@19.0.0 -q "How is useTransition exported?"
```
## Config Overview
- Config lives in `btca.config.jsonc` (project) and `~/.config/btca/btca.config.jsonc` (global).
- Project config overrides global and controls provider/model and resources.
## Troubleshooting
- "No resources configured": add resources with `btca add ...` and re-run `btca resources`.
- "Provider not connected": run `btca connect` and follow the prompts.
- "Unknown resource": use `btca resources` for configured names, or pass a valid HTTPS git URL / `npm:<package>` as an anonymous one-off in `btca ask`.
Инициализация мануала...
//
$ ls -R related_skills/
2026-03-28
⭐ 131845
agents-sdk — Инструментарий для разработки Cloudflare Agents
2026-03-28
⭐ 36046
vueuse-functions — Библиотека примеров для VueUse композиций
2026-03-28
⭐ 114249
dmux-workflows — Параллельное управление сессиями AI-агентов
2026-03-28
⭐ 36046
unocss — Мгновенная генерация CSS утилит
package.json
$ install --global
skills.sh
npx skills add https://github.com/davis7dotsh/better-context/tree/main/skills/btca-cli
$ download --local
man
[HINT] Скачивает всю директорию скилла с GitHub: SKILL.md и все связанные файлы