Table of Contents

Discovered Skills

Architecture and Roadmap

graph BT
visualizer --> theme --> obsidian
plugin & browser --> morpheus --> obsidian

Release 1 - Basic

  • Custom green theme and adaptive fonts
  • Basic matrix code visualizer
  • Basic AI chatting with Gemini
  • Chat with page
  • Use basic skills

How

graph LR
Prompt --> Skills --> Plan --> Execute
Execute -.-> Prompt

When you submit a Prompt it’s checked against every Skill individually. A Skill is made up of two sub-prompts, a Trigger Prompt and a Response Prompt. Morpheus creates a 3 message stack and asks the LLM to return 1 if the skill matches the user’s prompt based on the Skill Detection Prompt, or 0 otherwise:

[
	{
		role: 'system',
		content: SkillDetectionPrompt
	},
	{
		role: 'user',
		content: UserPrompt
	},
	{
		role: 'system',
		content: Skill
	}
]