[PR #29] [MERGED] feat: claude skills #27

Closed
opened 2026-02-16 03:19:26 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/vibe-llama/pull/29
Author: @AstraBert
Created: 10/20/2025
Status: Merged
Merged: 10/22/2025
Merged by: @AstraBert

Base: mainHead: clelia/claude-skills


📝 Commits (4)

  • bdd214d wip: claude skills
  • 923c3b5 wip: more skills and (untested) code support
  • 785f3bd chore: add tests and fixes
  • 37c58b7 chore: more tests and final touches

📊 Changes

36 files changed (+1729 additions, -63 deletions)

View changed files

📝 .gitignore (+3 -0)
📝 README.md (+16 -0)
documentation/skills/information-retrieval/SKILL.md (+77 -0)
documentation/skills/llamactl/REFERENCE.md (+314 -0)
documentation/skills/llamactl/SKILL.md (+89 -0)
documentation/skills/pdf-processing/REFERENCE.md (+175 -0)
documentation/skills/pdf-processing/SKILL.md (+50 -0)
documentation/skills/structured-data-extraction/REFERENCE.md (+352 -0)
documentation/skills/structured-data-extraction/SKILL.md (+77 -0)
documentation/skills/text-classification/REFERENCE.md (+138 -0)
documentation/skills/text-classification/SKILL.md (+83 -0)
📝 packages/vibe-llama-core/pyproject.toml (+2 -2)
📝 packages/vibe-llama-core/src/vibe_llama_core/docs/__init__.py (+3 -3)
📝 packages/vibe-llama-core/src/vibe_llama_core/docs/data.py (+16 -1)
📝 packages/vibe-llama-core/src/vibe_llama_core/docs/utils.py (+67 -1)
📝 packages/vibe-llama-core/tests/test_docs.py (+52 -2)
📝 pyproject.toml (+1 -1)
📝 src/vibe_llama/main.py (+13 -2)
📝 src/vibe_llama/sdk/base.py (+16 -1)
📝 src/vibe_llama/starter/__init__.py (+14 -2)

...and 16 more files

📄 Description

Closes #28

Adding skills for claude code to enable:

  • PDF text extraction with LlamaParse
  • Structured data extraction with LlamaExtract
  • Text classification with LlamaClassify
  • Information retrieval with LlamaCloud Index
  • llamactl usage

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/vibe-llama/pull/29 **Author:** [@AstraBert](https://github.com/AstraBert) **Created:** 10/20/2025 **Status:** ✅ Merged **Merged:** 10/22/2025 **Merged by:** [@AstraBert](https://github.com/AstraBert) **Base:** `main` ← **Head:** `clelia/claude-skills` --- ### 📝 Commits (4) - [`bdd214d`](https://github.com/run-llama/vibe-llama/commit/bdd214d94e0cba5a62ac4b5d696f616ae72145d4) wip: claude skills - [`923c3b5`](https://github.com/run-llama/vibe-llama/commit/923c3b5f409b2ee1c450a6a79b8c9b0336605c88) wip: more skills and (untested) code support - [`785f3bd`](https://github.com/run-llama/vibe-llama/commit/785f3bdf2f120ec3e4bb3924c65a66ba05c2f996) chore: add tests and fixes - [`37c58b7`](https://github.com/run-llama/vibe-llama/commit/37c58b7620d60db01b82ef954394448838bab3a5) chore: more tests and final touches ### 📊 Changes **36 files changed** (+1729 additions, -63 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -0) 📝 `README.md` (+16 -0) ➕ `documentation/skills/information-retrieval/SKILL.md` (+77 -0) ➕ `documentation/skills/llamactl/REFERENCE.md` (+314 -0) ➕ `documentation/skills/llamactl/SKILL.md` (+89 -0) ➕ `documentation/skills/pdf-processing/REFERENCE.md` (+175 -0) ➕ `documentation/skills/pdf-processing/SKILL.md` (+50 -0) ➕ `documentation/skills/structured-data-extraction/REFERENCE.md` (+352 -0) ➕ `documentation/skills/structured-data-extraction/SKILL.md` (+77 -0) ➕ `documentation/skills/text-classification/REFERENCE.md` (+138 -0) ➕ `documentation/skills/text-classification/SKILL.md` (+83 -0) 📝 `packages/vibe-llama-core/pyproject.toml` (+2 -2) 📝 `packages/vibe-llama-core/src/vibe_llama_core/docs/__init__.py` (+3 -3) 📝 `packages/vibe-llama-core/src/vibe_llama_core/docs/data.py` (+16 -1) 📝 `packages/vibe-llama-core/src/vibe_llama_core/docs/utils.py` (+67 -1) 📝 `packages/vibe-llama-core/tests/test_docs.py` (+52 -2) 📝 `pyproject.toml` (+1 -1) 📝 `src/vibe_llama/main.py` (+13 -2) 📝 `src/vibe_llama/sdk/base.py` (+16 -1) 📝 `src/vibe_llama/starter/__init__.py` (+14 -2) _...and 16 more files_ </details> ### 📄 Description Closes #28 Adding skills for claude code to enable: - PDF text extraction with LlamaParse - Structured data extraction with LlamaExtract - Text classification with LlamaClassify - Information retrieval with LlamaCloud Index - llamactl usage --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 03:19:26 -05:00
yindo closed this issue 2026-02-16 03:19:26 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/vibe-llama#27