スキル一覧に戻る

c-ai

daxaur
更新日 2 days ago
2 閲覧
143
6
143
GitHubで表示
その他aillmsummarizechat

について

c-aiは、開発者がターミナルから直接LLMに問い合わせるためのCLIツールを提供し、パイプ処理を通じてテキスト要約、対話型チャット、コード分析を可能にします。`llm`や`aichat`などのユーティリティを通じて、ローカルモデルとクラウドモデルの両方をサポートしています。このスキルは、ワークフローを離れることなく、コミットメッセージの生成、コードレビュー、文法修正などのAI支援タスクを迅速に行うために使用してください。

クイックインストール

Claude Code

推奨
メイン
npx skills add daxaur/openpaw -a claude-code
プラグインコマンド代替
/plugin add https://github.com/daxaur/openpaw
Git クローン代替
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-ai

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

AI / LLM Tools

llm (Simon Willison)

# Quick prompt
llm "What is the capital of France?"

# Pipe text for processing
cat article.txt | llm "Summarize this in 3 bullet points"
git diff | llm "Write a commit message for these changes"
pbpaste | llm "Fix the grammar in this text"

# Interactive chat
llm chat

# Use specific model
llm -m claude-3.5-sonnet "Explain quantum computing"
llm -m gpt-4o "Review this code"

# List available models
llm models

# Install model plugins
llm install llm-claude-3
llm install llm-ollama    # local models

# View prompt/response history
llm logs list
llm logs last

aichat

# Quick prompt
aichat "Explain Docker in simple terms"

# Pipe input
cat code.py | aichat "Find bugs in this code"

# Interactive REPL
aichat

# Shell assistant (generates and runs commands)
aichat -e "find all files larger than 100MB"

# Specific model
aichat -m claude-3.5-sonnet "Hello"

# List models
aichat --list-models

Guidelines

  • Use llm for piping text through LLMs (summarize, translate, analyze)
  • Use aichat -e for generating shell commands from natural language
  • Both tools store API keys locally — set up once with auth commands
  • llm has the richest plugin ecosystem (100+ model providers)
  • aichat is faster (Rust) and has built-in RAG support
  • These tools use separate API keys from Claude Code — user pays per token

GitHub リポジトリ

daxaur/openpaw
パス: skills/c-ai
0
ai-agentanthropicautomationclaudeclaude-codecli

関連スキル

llamaguard

その他

LlamaGuardは、暴力やヘイトスピーチなど6つの安全性カテゴリーにおいて、LLMの入力と出力をモデレートするMetaの70-80億パラメータモデルです。94〜95%の精度を提供し、vLLM、Hugging Face、Amazon SageMakerを使用してデプロイ可能です。このスキルを使用して、AIアプリケーションにコンテンツフィルタリングと安全策を簡単に統合できます。

スキルを見る

cost-optimization

その他

このClaudeスキルは、リソースの適正サイジング、タグ付け戦略、支出分析を通じて、開発者がクラウドコストを最適化することを支援します。AWS、Azure、GCPにわたるクラウド支出の削減とコストガバナンスの実施のためのフレームワークを提供します。インフラコストの分析、リソースの適正サイジング、または予算制約への対応が必要な際にご利用ください。

スキルを見る

quantizing-models-bitsandbytes

その他

このスキルは、bitsandbytesを使用してLLMを8ビットまたは4ビット精度に量子化し、精度の低下を最小限に抑えつつ50〜75%のメモリ削減を実現します。限られたGPUメモリでより大規模なモデルを実行したり、推論を高速化するのに理想的で、INT8、NF4、FP4などのフォーマットをサポートしています。HuggingFace Transformersと統合され、QLoRAトレーニングや8ビットオプティマイザーを可能にします。

スキルを見る

dispatching-parallel-agents

その他

このClaudeスキルは、複数のエージェントを配備し、3つ以上の独立した問題を並行して調査・修正します。共有状態や依存関係がなく解決可能な、無関係な障害が発生するシナリオ向けに設計されています。中核となる機能は並列問題解決であり、効率を最大化するために独立した問題領域ごとに1つのエージェントを割り当てます。

スキルを見る