[WIP] [OMEGA-76] Support adding skills using MarkDown descriptions#155
Closed
besSveta wants to merge 58 commits into
Closed
[WIP] [OMEGA-76] Support adding skills using MarkDown descriptions#155besSveta wants to merge 58 commits into
besSveta wants to merge 58 commits into
Conversation
added 30 commits
April 14, 2026 00:05
…eserach # Conflicts: # Dockerfile # run.metta
…eserach # Conflicts: # memory/prompt.txt # src/skills.metta
…eserach # Conflicts: # memory/prompt.txt
…eserach # Conflicts: # memory/prompt.txt # src/loop.metta # src/skills.metta
…eserach # Conflicts: # Dockerfile # src/skills.metta
…eserach2 # Conflicts: # scripts/omegaclaw
…eserach2 # Conflicts: # Dockerfile # scripts/omegaclaw
vsbogd
reviewed
Jun 8, 2026
vsbogd
reviewed
Jun 8, 2026
vsbogd
reviewed
Jun 8, 2026
added 5 commits
June 10, 2026 11:31
…kill_md # Conflicts: # src/loop.metta
3 tasks
Collaborator
|
Closing this as it is replaced by #259 |
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.
Changes:
Added a new variable to hold the currently active instructions:
&active_instructions
New skills in skills.metta
How it works:
When the user initiates a research session, the agent invokes:
(load-instructions "research-workflow")
This loads the contents of instructions/research-workflow/SKILL.md into &active_instructions.
When the research session is finished, the agent calls:
(unload-instructions)
which clears the active instructions.
workflows-with-descriptionloads available workflows and their descriptions into (getSkills).For each workflow, there must be a folder located in OmegaClaw-Core/instructions. Each workflow is required to have two files: SKILL.md and description.txt. The
workflows-with-descriptionfunction reads this description.Also introduced the function
add-workflow-skills, which loads descriptions of specialized skills for the currently active workflow into the&workflow_skillsvariable, which is also passed into the prompt.Specialized skills for a workflow and their descriptions must also be stored in OmegaClaw-Core/instructions/name-workflow. If skills are defined for a workflow, their descriptions must be provided in workflow_skills_description.txt, which is the source
add-workflow-skillsreads from.