Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces native, local-first support for Ollama models and closes #2. Since many local-first models (like standard
llama3) do not yet support the native OpenAI-styletool_callsAPI, we have implemented a Text-Based Prompt Routing strategy.This update ensures Skillware is truly model-agnostic, enabling integration with any local LLM capable of generating structured JSON blocks. We have also hardened the core loader and expanded the test suite to ensure 100% deterministic reliability across all supported model families.
Logic & Cognition Changes
SkillLoader.to_ollama_prompt()to serialize skill manifests into markdown-formatted instructions suitable for a system prompt.issubclassvalidation againstBaseSkill.jsonblocks from the LLM's raw text stream.Type of Change (Matches Issue Templates)
manifest.yaml, skill.py, andinstructions.md)base_skill.py, loader.py, etc.)Checklist (For the Submitting Agent / Developer)
manifest.yaml(if submitting a new skill).env_varsare explicitly documented in the manifest.Constitution & Safety (If adding/modifying a Skill)
This framework update enables local execution, enhancing data privacy. No modifications were made to the internal safety boundaries of individual skills.
Related Issues
Closes #2