adr
Write an Architecture Decision Record documenting a significant technical decision.
Generate vector embeddings for text data using embedding models.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/generate-embeddingsContext preview
What this command does when you run it.
Generate vector embeddings for text data using embedding models.
Generate vector embeddings for text data using embedding models.
1. Ask the user for the input data: text file, database table, or API responses 2. Select the embedding model: OpenAI text-embedding-3, Cohere embed, Sentence-BERT, or local model 3. Preprocess the input text: clean, normalize, truncate to model's max token length 4. Batch the inputs for efficient API calls (batch size based on model limits) 5. Generate embeddings with retry logic for API rate limits and transient errors 6. Validate embedding dimensions match the expected model output 7. Normalize embeddings to unit length for cosine similarity searches 8. Store embeddings with their source text and metadata in the vector database 9. Create an index for efficient nearest-neighbor search 10. Verify embedding quality by checking similarity of known-similar items 11. Report: total items embedded, dimensions, storage size, API cost estimate 12. Save the embedding configuration for future regeneration
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.