contextspin 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/config.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contextspin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Replace Claude Code spinner/statusline text with live org context (meetings, Slack, CI, incidents, PRs) aggregated from your existing MCP servers, CLIs, and HTTP endpoints.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/config.js
CHANGED
|
@@ -74,10 +74,10 @@ export const DEFAULT_SNIPPETS = [
|
|
|
74
74
|
"😄 To understand recursion, you must first understand recursion.",
|
|
75
75
|
// Live-context teasers + onboarding — what to try next.
|
|
76
76
|
"🌤️ Local weather appears here once the daemon warms up",
|
|
77
|
-
"📊
|
|
78
|
-
"👀
|
|
79
|
-
"📅
|
|
80
|
-
"🛠️
|
|
77
|
+
"📊 Ask /contextspin to see how many PRs you've closed to date",
|
|
78
|
+
"👀 Ask /contextspin to surface PRs awaiting your review",
|
|
79
|
+
"📅 Ask /contextspin to add your next meeting here",
|
|
80
|
+
"🛠️ Ask /contextspin to wire up more live sources",
|
|
81
81
|
];
|
|
82
82
|
|
|
83
83
|
/**
|