Add ollama-multi-model-writer skill for local GPU paper writing - #32
Merged
Conversation
Introduces a new task-layer skill that routes research paper sections to locally-running Ollama models based on their strengths: - DeepSeek-R1:7b → Methods, Results, scientific reasoning - Phi-4-reasoning → Abstract, Introduction, Conclusions - GLM-4.7-Flash → Full-paper synthesis and consistency polish New files: - skills/ollama-multi-model-writer/SKILL.md — full skill with 3-phase workflow, section routing table, single-section mode, and pipeline integration contract - skills/ollama-multi-model-writer/scripts/ollama-runner.sh — bash runner with model availability checks - skills/ollama-multi-model-writer/templates/abstract-template.md - skills/ollama-multi-model-writer/templates/methods-template.md Integrations: - lead-researcher/SKILL.md: adds Stage 7c (Ollama local draft path) alongside the existing 7a/7b paths; adds to sub-skills list and Quick-Start Paths table - research-team/config.json: registers ollama-multi-model-writer as a task-layer teammate reporting to lead-researcher - TaskCompleted.sh: adds output gate requiring paper-*.md before the teammate can mark its task complete https://claude.ai/code/session_01DYJVNVqTVq7dDzTjzEZHrr
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.
Summary
Introduces a new
ollama-multi-model-writerskill that enables research paper writing using locally-running Ollama models on GPU, with no cloud API dependencies. The skill intelligently routes paper sections to specialized models optimized for different writing tasks.Key Changes
New skill:
ollama-multi-model-writer(skills/ollama-multi-model-writer/SKILL.md)[PLACEHOLDER]and[RESULT NEEDED]tags for missing dataPrompt templates for consistent model invocation
templates/abstract-template.md— 5-part abstract structure for Phi-4-reasoningtemplates/methods-template.md— Detailed methods section guidance for DeepSeek-R1Bash runner script (
scripts/ollama-runner.sh)Integration with lead-researcher pipeline
config.jsonwith proper reporting chainTaskCompleted.shensures draft manuscript is producedNotable Implementation Details
paper-{topic}-draft.mdwith model attribution table and data gaps section for transparencyhttps://claude.ai/code/session_01DYJVNVqTVq7dDzTjzEZHrr