Agent skill · Workflow & Productivity

mistral-core-workflow-b

Execute Mistral AI secondary workflows: Embeddings and Function Calling. Use when implementing semantic search, RAG applications, or tool-augmented LLM interactions. Trigger with phrases like "mistral embeddings", "mistral function calling", "mistral tools", "mistral RAG", "mistral semantic search".

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill mistral-core-workflow-b --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Grep
Path: skills/ai-llm/mistral-core-workflow-b/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Mistral AI Core Workflow B: Embeddings & Function Calling ## Overview Secondary workflows for Mistral AI: Text embeddings for semantic search and function calling for tool use. ## Prerequisites - Completed `mistral-install-auth` setup - Familiarity with `mistral-core-workflow-a` - Valid API credentials configured ## Embeddings ### Step 1: Generate Text Embeddings ```typescript import Mistral from '@mistralai/mistralai'; const client = new Mistral({ apiKey: process.env.MISTRAL_API_KEY, }); async function getEmbedding(text: string): Promise<number[]> { const response = await client.embeddings.create({ model: 'mistral-embed', inputs: [text], }); return response.data[0].embedding; } // Usage const embedding = await getEmbedding('Machine learning is fascinating.'); console.log(`Embedding dimensions: ${embedding.length}`); // 1024 ``` ### Step 2: Batch Embeddings ```typescript async function getBatchEmbeddings(texts: string[]): Promise<number[][]> { const response = await client.embeddings.create({ model: 'mistral-embed', inputs: texts, }); return response.data.map(d => d.embedding); } // Usage const documents = [ 'Python is a programming language.', 'JavaScript runs in browsers.', 'Ru

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Embeddings
  4. Step 1: Generate Text Embeddings
  5. Step 2: Batch Embeddings
  6. Step 3: Semantic Search Implementation
  7. Function Calling
  8. Step 4: Define Tools
  9. Step 5: Implement Function Calling Loop
  10. Step 6: RAG (Retrieval-Augmented Generation)
  11. Output
  12. Error Handling
  13. Examples
  14. Python Embeddings
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the mistral-core-workflow-b skill do?

Execute Mistral AI secondary workflows: Embeddings and Function Calling. Use when implementing semantic search, RAG applications, or tool-augmented LLM interactions. Trigger with phrases like "mistral embeddings", "mistral function calling", "mistral tools", "mistral RAG", "mistral semantic search".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill mistral-core-workflow-b --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going