Update component registry and system state

Register new skills and update future considerations for Claude dashboard integration.
This commit is contained in:
OpenCode Test
2026-01-03 10:55:07 -08:00
parent c21665284a
commit 343d2e4237
3 changed files with 65 additions and 1 deletions

View File

@@ -77,6 +77,32 @@
"tracking",
"history"
]
},
"stock-lookup": {
"description": "Look up stock prices and quotes",
"script": "~/.claude/skills/stock-lookup/scripts/quote.py",
"triggers": [
"stock",
"stock price",
"quote",
"ticker",
"share price",
"market price",
"trend",
"performance"
]
},
"morning-report": {
"description": "Generate daily morning dashboard with email, calendar, stocks, weather, tasks, infra, and news",
"script": "~/.claude/skills/morning-report/scripts/generate.py",
"triggers": [
"morning report",
"morning",
"daily report",
"dashboard",
"briefing",
"daily briefing"
]
}
},
"commands": {
@@ -95,6 +121,16 @@
"aliases": ["/calendar", "/cal"],
"invokes": "skill:gcal"
},
"/stock": {
"description": "Stock price lookup",
"aliases": ["/quote", "/ticker"],
"invokes": "skill:stock-lookup"
},
"/morning": {
"description": "Generate morning report dashboard",
"aliases": ["/briefing", "/daily"],
"invokes": "skill:morning-report"
},
"/usage": {
"description": "View usage statistics",
"aliases": ["/stats"],