Phase 6: ~/.super-ollama/ layout, --no-profile flag, install.sh, build matrix#11
Draft
Phase 6: ~/.super-ollama/ layout, --no-profile flag, install.sh, build matrix#11
Conversation
Agent-Logs-Url: https://github.com/Kritarth-Dandapat/super-ollama/sessions/6030480b-e014-4837-9a6c-862db7a47c33 Co-authored-by: Kritarth-Dandapat <141005022+Kritarth-Dandapat@users.noreply.github.com>
Agent-Logs-Url: https://github.com/Kritarth-Dandapat/super-ollama/sessions/6030480b-e014-4837-9a6c-862db7a47c33 Co-authored-by: Kritarth-Dandapat <141005022+Kritarth-Dandapat@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Implement profile and prompts packaging in Phase 6
Phase 6: ~/.super-ollama/ layout, --no-profile flag, install.sh, build matrix
Apr 11, 2026
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.
Implements the full Phase 6 scope: file-based profile/prompt configuration under
~/.super-ollama/, profile injection into every inference call with an opt-out flag, a cross-platform install script, and a CI build matrix.internal/configConfigstruct with allconfig.tomlfields:EmbeddingModel,DBPath,TodoPath,CaptureIntervalMinutes,CaptureEnabledDir()— resolves~/.super-ollama/(honoursXDG_CONFIG_HOME)LoadProfile()— readsprofile.md; silent no-op when absentLoadPrompt(name)— readsprompts/<name>.md; silent no-op when absentInit()— creates the directory skeleton with default files; idempotentinternal/engineGenerateandStreamGeneratenow accept asystem stringparam forwarded toapi.GenerateRequest.Systemcmd/super-ollama--no-profilepersistent flag (suppressesprofile.mdinjection on all commands)ask: injectsprofile.md+prompts/ask.mdas the system promptchat: prepends profile as asystemmessage before the conversation loopconfig initsubcommand;config shownow displaysembedding_model, directory path, and profile statusinstall.shOne-liner cross-platform installer: detects OS/arch, downloads the release binary, and runs
Init()equivalent to scaffold~/.super-ollama/..github/workflows/build-matrix.ymlBuilds
super-ollamaforlinux/{amd64,arm64},darwin/{amd64,arm64}, andwindows/amd64. Separatetest-prompt-pipelinejob runsinternal/configandcmd/configtests on all three OSes.