myaiforone 1.0.0
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/README.md +113 -0
- package/agents/_template/CLAUDE.md +18 -0
- package/agents/_template/agent.json +7 -0
- package/agents/platform/agentcreator/CLAUDE.md +300 -0
- package/agents/platform/appcreator/CLAUDE.md +158 -0
- package/agents/platform/gym/CLAUDE.md +486 -0
- package/agents/platform/gym/agent.json +40 -0
- package/agents/platform/gym/programs/agent-building/program.json +160 -0
- package/agents/platform/gym/programs/automations-mastery/program.json +129 -0
- package/agents/platform/gym/programs/getting-started/program.json +124 -0
- package/agents/platform/gym/programs/mcp-integrations/program.json +116 -0
- package/agents/platform/gym/programs/multi-model-strategy/program.json +115 -0
- package/agents/platform/gym/programs/prompt-engineering/program.json +136 -0
- package/agents/platform/gym/souls/alex.md +12 -0
- package/agents/platform/gym/souls/jordan.md +12 -0
- package/agents/platform/gym/souls/morgan.md +12 -0
- package/agents/platform/gym/souls/riley.md +12 -0
- package/agents/platform/gym/souls/sam.md +12 -0
- package/agents/platform/hub/CLAUDE.md +372 -0
- package/agents/platform/promptcreator/CLAUDE.md +130 -0
- package/agents/platform/skillcreator/CLAUDE.md +163 -0
- package/bin/cli.js +566 -0
- package/config.example.json +310 -0
- package/dist/agent-registry.d.ts +32 -0
- package/dist/agent-registry.d.ts.map +1 -0
- package/dist/agent-registry.js +144 -0
- package/dist/agent-registry.js.map +1 -0
- package/dist/channels/discord.d.ts +17 -0
- package/dist/channels/discord.d.ts.map +1 -0
- package/dist/channels/discord.js +114 -0
- package/dist/channels/discord.js.map +1 -0
- package/dist/channels/imessage.d.ts +23 -0
- package/dist/channels/imessage.d.ts.map +1 -0
- package/dist/channels/imessage.js +214 -0
- package/dist/channels/imessage.js.map +1 -0
- package/dist/channels/slack.d.ts +19 -0
- package/dist/channels/slack.d.ts.map +1 -0
- package/dist/channels/slack.js +167 -0
- package/dist/channels/slack.js.map +1 -0
- package/dist/channels/telegram.d.ts +19 -0
- package/dist/channels/telegram.d.ts.map +1 -0
- package/dist/channels/telegram.js +274 -0
- package/dist/channels/telegram.js.map +1 -0
- package/dist/channels/types.d.ts +44 -0
- package/dist/channels/types.d.ts.map +1 -0
- package/dist/channels/types.js +18 -0
- package/dist/channels/types.js.map +1 -0
- package/dist/channels/whatsapp.d.ts +23 -0
- package/dist/channels/whatsapp.d.ts.map +1 -0
- package/dist/channels/whatsapp.js +189 -0
- package/dist/channels/whatsapp.js.map +1 -0
- package/dist/config.d.ts +134 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +127 -0
- package/dist/config.js.map +1 -0
- package/dist/cron.d.ts +8 -0
- package/dist/cron.d.ts.map +1 -0
- package/dist/cron.js +35 -0
- package/dist/cron.js.map +1 -0
- package/dist/decrypt-keys.d.ts +7 -0
- package/dist/decrypt-keys.d.ts.map +1 -0
- package/dist/decrypt-keys.js +53 -0
- package/dist/decrypt-keys.js.map +1 -0
- package/dist/encrypt-keys.d.ts +8 -0
- package/dist/encrypt-keys.d.ts.map +1 -0
- package/dist/encrypt-keys.js +62 -0
- package/dist/encrypt-keys.js.map +1 -0
- package/dist/executor.d.ts +31 -0
- package/dist/executor.d.ts.map +1 -0
- package/dist/executor.js +2009 -0
- package/dist/executor.js.map +1 -0
- package/dist/gemini-executor.d.ts +27 -0
- package/dist/gemini-executor.d.ts.map +1 -0
- package/dist/gemini-executor.js +160 -0
- package/dist/gemini-executor.js.map +1 -0
- package/dist/goals.d.ts +24 -0
- package/dist/goals.d.ts.map +1 -0
- package/dist/goals.js +189 -0
- package/dist/goals.js.map +1 -0
- package/dist/gym/activity-digest.d.ts +30 -0
- package/dist/gym/activity-digest.d.ts.map +1 -0
- package/dist/gym/activity-digest.js +506 -0
- package/dist/gym/activity-digest.js.map +1 -0
- package/dist/gym/dimension-scorer.d.ts +76 -0
- package/dist/gym/dimension-scorer.d.ts.map +1 -0
- package/dist/gym/dimension-scorer.js +236 -0
- package/dist/gym/dimension-scorer.js.map +1 -0
- package/dist/gym/gym-router.d.ts +7 -0
- package/dist/gym/gym-router.d.ts.map +1 -0
- package/dist/gym/gym-router.js +718 -0
- package/dist/gym/gym-router.js.map +1 -0
- package/dist/gym/index.d.ts +11 -0
- package/dist/gym/index.d.ts.map +1 -0
- package/dist/gym/index.js +11 -0
- package/dist/gym/index.js.map +1 -0
- package/dist/heartbeat.d.ts +21 -0
- package/dist/heartbeat.d.ts.map +1 -0
- package/dist/heartbeat.js +163 -0
- package/dist/heartbeat.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +254 -0
- package/dist/index.js.map +1 -0
- package/dist/keystore.d.ts +22 -0
- package/dist/keystore.d.ts.map +1 -0
- package/dist/keystore.js +178 -0
- package/dist/keystore.js.map +1 -0
- package/dist/logger.d.ts +9 -0
- package/dist/logger.d.ts.map +1 -0
- package/dist/logger.js +45 -0
- package/dist/logger.js.map +1 -0
- package/dist/memory/daily.d.ts +22 -0
- package/dist/memory/daily.d.ts.map +1 -0
- package/dist/memory/daily.js +82 -0
- package/dist/memory/daily.js.map +1 -0
- package/dist/memory/embeddings.d.ts +15 -0
- package/dist/memory/embeddings.d.ts.map +1 -0
- package/dist/memory/embeddings.js +154 -0
- package/dist/memory/embeddings.js.map +1 -0
- package/dist/memory/index.d.ts +32 -0
- package/dist/memory/index.d.ts.map +1 -0
- package/dist/memory/index.js +159 -0
- package/dist/memory/index.js.map +1 -0
- package/dist/memory/search.d.ts +21 -0
- package/dist/memory/search.d.ts.map +1 -0
- package/dist/memory/search.js +77 -0
- package/dist/memory/search.js.map +1 -0
- package/dist/memory/store.d.ts +23 -0
- package/dist/memory/store.d.ts.map +1 -0
- package/dist/memory/store.js +144 -0
- package/dist/memory/store.js.map +1 -0
- package/dist/ollama-executor.d.ts +17 -0
- package/dist/ollama-executor.d.ts.map +1 -0
- package/dist/ollama-executor.js +112 -0
- package/dist/ollama-executor.js.map +1 -0
- package/dist/openai-executor.d.ts +38 -0
- package/dist/openai-executor.d.ts.map +1 -0
- package/dist/openai-executor.js +197 -0
- package/dist/openai-executor.js.map +1 -0
- package/dist/router.d.ts +11 -0
- package/dist/router.d.ts.map +1 -0
- package/dist/router.js +185 -0
- package/dist/router.js.map +1 -0
- package/dist/test-message.d.ts +2 -0
- package/dist/test-message.d.ts.map +1 -0
- package/dist/test-message.js +60 -0
- package/dist/test-message.js.map +1 -0
- package/dist/utils/imsg-db-reader.d.ts +24 -0
- package/dist/utils/imsg-db-reader.d.ts.map +1 -0
- package/dist/utils/imsg-db-reader.js +92 -0
- package/dist/utils/imsg-db-reader.js.map +1 -0
- package/dist/utils/imsg-rpc.d.ts +25 -0
- package/dist/utils/imsg-rpc.d.ts.map +1 -0
- package/dist/utils/imsg-rpc.js +149 -0
- package/dist/utils/imsg-rpc.js.map +1 -0
- package/dist/utils/message-formatter.d.ts +3 -0
- package/dist/utils/message-formatter.d.ts.map +1 -0
- package/dist/utils/message-formatter.js +69 -0
- package/dist/utils/message-formatter.js.map +1 -0
- package/dist/web-ui.d.ts +12 -0
- package/dist/web-ui.d.ts.map +1 -0
- package/dist/web-ui.js +5784 -0
- package/dist/web-ui.js.map +1 -0
- package/dist/whatsapp-chats.d.ts +2 -0
- package/dist/whatsapp-chats.d.ts.map +1 -0
- package/dist/whatsapp-chats.js +76 -0
- package/dist/whatsapp-chats.js.map +1 -0
- package/dist/whatsapp-login.d.ts +2 -0
- package/dist/whatsapp-login.d.ts.map +1 -0
- package/dist/whatsapp-login.js +90 -0
- package/dist/whatsapp-login.js.map +1 -0
- package/dist/wiki-sync.d.ts +21 -0
- package/dist/wiki-sync.d.ts.map +1 -0
- package/dist/wiki-sync.js +147 -0
- package/dist/wiki-sync.js.map +1 -0
- package/docs/AddNewAgentGuide.md +100 -0
- package/docs/AddNewMcpGuide.md +72 -0
- package/docs/Architecture.md +795 -0
- package/docs/CLAUDE-AI-SETUP.md +166 -0
- package/docs/Setup.md +297 -0
- package/docs/ai-gym-architecture.md +1040 -0
- package/docs/ai-gym-build-plan.md +343 -0
- package/docs/ai-gym-onboarding.md +122 -0
- package/docs/appcreator_plan.md +348 -0
- package/docs/platform-mcp-audit.md +320 -0
- package/docs/server-deployment-plan.md +503 -0
- package/docs/superpowers/plans/2026-03-25-marketplace.md +1281 -0
- package/docs/superpowers/specs/2026-03-25-marketplace-design.md +287 -0
- package/docs/user-guide.md +2016 -0
- package/mcp-catalog.json +628 -0
- package/package.json +63 -0
- package/public/MyAIforOne-logomark-512.svg +16 -0
- package/public/MyAIforOne-logomark-transparent.svg +15 -0
- package/public/activity.html +314 -0
- package/public/admin.html +1674 -0
- package/public/agent-dashboard.html +670 -0
- package/public/api-docs.html +1106 -0
- package/public/automations.html +722 -0
- package/public/canvas.css +223 -0
- package/public/canvas.js +588 -0
- package/public/changelog.html +231 -0
- package/public/gym.html +2766 -0
- package/public/home.html +1930 -0
- package/public/index.html +2809 -0
- package/public/lab.html +1643 -0
- package/public/library.html +1442 -0
- package/public/marketplace.html +1101 -0
- package/public/mcp-docs.html +441 -0
- package/public/mini.html +390 -0
- package/public/monitor.html +584 -0
- package/public/org.html +4304 -0
- package/public/projects.html +734 -0
- package/public/settings.html +645 -0
- package/public/tasks.html +932 -0
- package/public/trainers/alex.svg +12 -0
- package/public/trainers/jordan.svg +12 -0
- package/public/trainers/morgan.svg +12 -0
- package/public/trainers/riley.svg +12 -0
- package/public/trainers/sam.svg +12 -0
- package/public/user-guide.html +218 -0
- package/registry/agents.json +3 -0
- package/registry/apps.json +20 -0
- package/registry/installed-drafts.json +3 -0
- package/registry/mcps.json +1084 -0
- package/registry/prompts/personal/mcp-test-prompt.md +6 -0
- package/registry/prompts/personal/memory-recall.md +6 -0
- package/registry/prompts/platform/brainstorm.md +15 -0
- package/registry/prompts/platform/code-review.md +16 -0
- package/registry/prompts/platform/explain.md +16 -0
- package/registry/prompts.json +58 -0
- package/registry/skills/external/brainstorming.md +5 -0
- package/registry/skills/external/code-review.md +40 -0
- package/registry/skills/external/frontend-patterns.md +642 -0
- package/registry/skills/external/frontend-slides.md +184 -0
- package/registry/skills/external/systematic-debugging.md +5 -0
- package/registry/skills/external/tdd.md +328 -0
- package/registry/skills/external/verification-before-completion.md +5 -0
- package/registry/skills/external/writing-plans.md +5 -0
- package/registry/skills/platform/ai41_app_build.md +930 -0
- package/registry/skills/platform/ai41_app_deploy.md +168 -0
- package/registry/skills/platform/ai41_app_orchestrator.md +239 -0
- package/registry/skills/platform/ai41_app_patterns.md +359 -0
- package/registry/skills/platform/ai41_app_register.md +85 -0
- package/registry/skills/platform/ai41_app_scaffold.md +421 -0
- package/registry/skills/platform/ai41_app_verify.md +107 -0
- package/registry/skills/platform/opProjectCreate.md +239 -0
- package/registry/skills/platform/op_devbrowser.md +136 -0
- package/registry/skills/platform/sop_brandguidelines.md +103 -0
- package/registry/skills/platform/sop_docx.md +117 -0
- package/registry/skills/platform/sop_frontenddesign.md +44 -0
- package/registry/skills/platform/sop_frontenddesign_v2.md +659 -0
- package/registry/skills/platform/sop_mcpbuilder.md +133 -0
- package/registry/skills/platform/sop_pdf.md +172 -0
- package/registry/skills/platform/sop_pptx.md +133 -0
- package/registry/skills/platform/sop_skillcreator.md +104 -0
- package/registry/skills/platform/sop_themefactory.md +128 -0
- package/registry/skills/platform/sop_webapptesting.md +75 -0
- package/registry/skills/platform/sop_webartifactsbuilder.md +97 -0
- package/registry/skills/platform/sop_xlsx.md +134 -0
- package/registry/skills.json +1055 -0
- package/scripts/discover-chats.sh +11 -0
- package/scripts/install-service-windows.ps1 +87 -0
- package/scripts/install-service.sh +52 -0
- package/scripts/seed-registry.ts +195 -0
- package/scripts/test-send.sh +5 -0
- package/scripts/tray-indicator.ps1 +35 -0
- package/scripts/uninstall-service-windows.ps1 +23 -0
- package/scripts/uninstall-service.sh +15 -0
- package/scripts/xbar-myagent.5s.sh +32 -0
- package/server/mcp-server/dist/index.d.ts +11 -0
- package/server/mcp-server/dist/index.js +1332 -0
- package/server/mcp-server/dist/lib/api-client.d.ts +165 -0
- package/server/mcp-server/dist/lib/api-client.js +241 -0
- package/server/mcp-server/index.ts +1545 -0
- package/server/mcp-server/lib/api-client.ts +366 -0
- package/server/mcp-server/tsconfig.json +14 -0
- package/src/agent-registry.ts +180 -0
- package/src/channels/discord.ts +129 -0
- package/src/channels/imessage.ts +261 -0
- package/src/channels/slack.ts +208 -0
- package/src/channels/telegram.ts +307 -0
- package/src/channels/types.ts +62 -0
- package/src/channels/whatsapp.ts +227 -0
- package/src/config.ts +281 -0
- package/src/cron.ts +43 -0
- package/src/decrypt-keys.ts +60 -0
- package/src/encrypt-keys.ts +70 -0
- package/src/executor.ts +2190 -0
- package/src/gemini-executor.ts +212 -0
- package/src/goals.ts +240 -0
- package/src/gym/activity-digest.ts +546 -0
- package/src/gym/dimension-scorer.ts +297 -0
- package/src/gym/gym-router.ts +801 -0
- package/src/gym/index.ts +19 -0
- package/src/heartbeat.ts +220 -0
- package/src/index.ts +275 -0
- package/src/keystore.ts +190 -0
- package/src/logger.ts +51 -0
- package/src/memory/daily.ts +101 -0
- package/src/memory/embeddings.ts +185 -0
- package/src/memory/index.ts +218 -0
- package/src/memory/search.ts +124 -0
- package/src/memory/store.ts +189 -0
- package/src/ollama-executor.ts +126 -0
- package/src/openai-executor.ts +259 -0
- package/src/router.ts +230 -0
- package/src/test-message.ts +72 -0
- package/src/utils/imsg-db-reader.ts +109 -0
- package/src/utils/imsg-rpc.ts +178 -0
- package/src/utils/message-formatter.ts +90 -0
- package/src/web-ui.ts +5778 -0
- package/src/whatsapp-chats.ts +91 -0
- package/src/whatsapp-login.ts +110 -0
- package/src/wiki-sync.ts +199 -0
- package/tsconfig.json +19 -0
|
@@ -0,0 +1,1055 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skills": [
|
|
3
|
+
{
|
|
4
|
+
"id": "opProjectCreate",
|
|
5
|
+
"name": "Project Create & Execute",
|
|
6
|
+
"provider": "AgenticLedger",
|
|
7
|
+
"description": "Create and execute a cross-agent project from a high-level description. Plans tasks, creates the project entity, links agents/artifacts, and optionally kicks off autonomous background execution.",
|
|
8
|
+
"category": "projects",
|
|
9
|
+
"verified": true,
|
|
10
|
+
"source": "agenticledger/platform",
|
|
11
|
+
"tags": ["projects", "planning", "automation"],
|
|
12
|
+
"localPath": "registry/skills/platform/opProjectCreate.md",
|
|
13
|
+
"fetch": { "type": "file" }
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "sop_brandguidelines",
|
|
17
|
+
"name": "Sop Brandguidelines",
|
|
18
|
+
"provider": "AgenticLedger",
|
|
19
|
+
"description": "",
|
|
20
|
+
"category": "design",
|
|
21
|
+
"verified": true,
|
|
22
|
+
"source": "agenticledger/platform",
|
|
23
|
+
"tags": [
|
|
24
|
+
"design"
|
|
25
|
+
],
|
|
26
|
+
"localPath": "registry/skills/platform/sop_brandguidelines.md",
|
|
27
|
+
"fetch": {
|
|
28
|
+
"type": "file"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"id": "sop_docx",
|
|
33
|
+
"name": "Sop Docx",
|
|
34
|
+
"provider": "AgenticLedger",
|
|
35
|
+
"description": "",
|
|
36
|
+
"category": "documents",
|
|
37
|
+
"verified": true,
|
|
38
|
+
"source": "agenticledger/platform",
|
|
39
|
+
"tags": [
|
|
40
|
+
"documents"
|
|
41
|
+
],
|
|
42
|
+
"localPath": "registry/skills/platform/sop_docx.md",
|
|
43
|
+
"fetch": {
|
|
44
|
+
"type": "file"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "sop_frontenddesign",
|
|
49
|
+
"name": "Sop Frontenddesign",
|
|
50
|
+
"provider": "AgenticLedger",
|
|
51
|
+
"description": "",
|
|
52
|
+
"category": "design",
|
|
53
|
+
"verified": true,
|
|
54
|
+
"source": "agenticledger/platform",
|
|
55
|
+
"tags": [
|
|
56
|
+
"design"
|
|
57
|
+
],
|
|
58
|
+
"localPath": "registry/skills/platform/sop_frontenddesign.md",
|
|
59
|
+
"fetch": {
|
|
60
|
+
"type": "file"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": "sop_frontenddesign_v2",
|
|
65
|
+
"name": "ui-ux-pro-max",
|
|
66
|
+
"provider": "AgenticLedger",
|
|
67
|
+
"description": "\"UI/UX design intelligence for web and mobile. Includes 50+ styles, 161 color palettes, 57 font pairings, 161 product types, 99 UX guidelines, and 25 chart types across 10 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, and HTML/CSS). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, and check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, and mobile app. Elements: button, modal, navbar, sidebar, card, table, form, and chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, and flat design. Topics: color systems, accessibility, animation, layout, typography, font pairing, spacing, interaction states, shadow, and gradient. Integrations: shadcn/ui MCP for component search and examples.\"",
|
|
68
|
+
"category": "devtools",
|
|
69
|
+
"verified": true,
|
|
70
|
+
"source": "agenticledger/platform",
|
|
71
|
+
"tags": [
|
|
72
|
+
"devtools"
|
|
73
|
+
],
|
|
74
|
+
"localPath": "registry/skills/platform/sop_frontenddesign_v2.md",
|
|
75
|
+
"fetch": {
|
|
76
|
+
"type": "file"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "sop_mcpbuilder",
|
|
81
|
+
"name": "Sop Mcpbuilder",
|
|
82
|
+
"provider": "AgenticLedger",
|
|
83
|
+
"description": "",
|
|
84
|
+
"category": "devtools",
|
|
85
|
+
"verified": true,
|
|
86
|
+
"source": "agenticledger/platform",
|
|
87
|
+
"tags": [
|
|
88
|
+
"devtools"
|
|
89
|
+
],
|
|
90
|
+
"localPath": "registry/skills/platform/sop_mcpbuilder.md",
|
|
91
|
+
"fetch": {
|
|
92
|
+
"type": "file"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "sop_pdf",
|
|
97
|
+
"name": "Sop Pdf",
|
|
98
|
+
"provider": "AgenticLedger",
|
|
99
|
+
"description": "",
|
|
100
|
+
"category": "documents",
|
|
101
|
+
"verified": true,
|
|
102
|
+
"source": "agenticledger/platform",
|
|
103
|
+
"tags": [
|
|
104
|
+
"documents"
|
|
105
|
+
],
|
|
106
|
+
"localPath": "registry/skills/platform/sop_pdf.md",
|
|
107
|
+
"fetch": {
|
|
108
|
+
"type": "file"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "sop_pptx",
|
|
113
|
+
"name": "Sop Pptx",
|
|
114
|
+
"provider": "AgenticLedger",
|
|
115
|
+
"description": "",
|
|
116
|
+
"category": "documents",
|
|
117
|
+
"verified": true,
|
|
118
|
+
"source": "agenticledger/platform",
|
|
119
|
+
"tags": [
|
|
120
|
+
"documents"
|
|
121
|
+
],
|
|
122
|
+
"localPath": "registry/skills/platform/sop_pptx.md",
|
|
123
|
+
"fetch": {
|
|
124
|
+
"type": "file"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": "sop_skillcreator",
|
|
129
|
+
"name": "Sop Skillcreator",
|
|
130
|
+
"provider": "AgenticLedger",
|
|
131
|
+
"description": "",
|
|
132
|
+
"category": "devtools",
|
|
133
|
+
"verified": true,
|
|
134
|
+
"source": "agenticledger/platform",
|
|
135
|
+
"tags": [
|
|
136
|
+
"devtools"
|
|
137
|
+
],
|
|
138
|
+
"localPath": "registry/skills/platform/sop_skillcreator.md",
|
|
139
|
+
"fetch": {
|
|
140
|
+
"type": "file"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"id": "sop_themefactory",
|
|
145
|
+
"name": "Sop Themefactory",
|
|
146
|
+
"provider": "AgenticLedger",
|
|
147
|
+
"description": "",
|
|
148
|
+
"category": "general",
|
|
149
|
+
"verified": true,
|
|
150
|
+
"source": "agenticledger/platform",
|
|
151
|
+
"tags": [
|
|
152
|
+
"general"
|
|
153
|
+
],
|
|
154
|
+
"localPath": "registry/skills/platform/sop_themefactory.md",
|
|
155
|
+
"fetch": {
|
|
156
|
+
"type": "file"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"id": "sop_webapptesting",
|
|
161
|
+
"name": "Sop Webapptesting",
|
|
162
|
+
"provider": "AgenticLedger",
|
|
163
|
+
"description": "",
|
|
164
|
+
"category": "testing",
|
|
165
|
+
"verified": true,
|
|
166
|
+
"source": "agenticledger/platform",
|
|
167
|
+
"tags": [
|
|
168
|
+
"testing"
|
|
169
|
+
],
|
|
170
|
+
"localPath": "registry/skills/platform/sop_webapptesting.md",
|
|
171
|
+
"fetch": {
|
|
172
|
+
"type": "file"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"id": "sop_webartifactsbuilder",
|
|
177
|
+
"name": "Sop Webartifactsbuilder",
|
|
178
|
+
"provider": "AgenticLedger",
|
|
179
|
+
"description": "",
|
|
180
|
+
"category": "devtools",
|
|
181
|
+
"verified": true,
|
|
182
|
+
"source": "agenticledger/platform",
|
|
183
|
+
"tags": [
|
|
184
|
+
"devtools"
|
|
185
|
+
],
|
|
186
|
+
"localPath": "registry/skills/platform/sop_webartifactsbuilder.md",
|
|
187
|
+
"fetch": {
|
|
188
|
+
"type": "file"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "sop_xlsx",
|
|
193
|
+
"name": "Sop Xlsx",
|
|
194
|
+
"provider": "AgenticLedger",
|
|
195
|
+
"description": "",
|
|
196
|
+
"category": "documents",
|
|
197
|
+
"verified": true,
|
|
198
|
+
"source": "agenticledger/platform",
|
|
199
|
+
"tags": [
|
|
200
|
+
"documents"
|
|
201
|
+
],
|
|
202
|
+
"localPath": "registry/skills/platform/sop_xlsx.md",
|
|
203
|
+
"fetch": {
|
|
204
|
+
"type": "file"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "op_devbrowser",
|
|
209
|
+
"name": "Dev Browser",
|
|
210
|
+
"provider": "AgenticLedger",
|
|
211
|
+
"description": "Control a real Chromium browser \u2014 navigate pages, scrape content, fill forms, take screenshots, and automate web workflows using the dev-browser CLI.",
|
|
212
|
+
"category": "devtools",
|
|
213
|
+
"verified": true,
|
|
214
|
+
"source": "agenticledger/platform",
|
|
215
|
+
"tags": [
|
|
216
|
+
"devtools",
|
|
217
|
+
"browser",
|
|
218
|
+
"automation"
|
|
219
|
+
],
|
|
220
|
+
"localPath": "registry/skills/platform/op_devbrowser.md",
|
|
221
|
+
"fetch": {
|
|
222
|
+
"type": "file"
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "allium-onchain-data",
|
|
227
|
+
"name": "Allium Onchain Data",
|
|
228
|
+
"provider": "AgenticLedger",
|
|
229
|
+
"description": ">-",
|
|
230
|
+
"category": "global",
|
|
231
|
+
"verified": false,
|
|
232
|
+
"source": "local",
|
|
233
|
+
"tags": [
|
|
234
|
+
"global"
|
|
235
|
+
],
|
|
236
|
+
"localPath": "/Users/oreph/.claude/commands/allium-onchain-data.md"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"id": "frexplorer",
|
|
240
|
+
"name": "Frexplorer",
|
|
241
|
+
"provider": "AgenticLedger",
|
|
242
|
+
"description": ">-",
|
|
243
|
+
"category": "global",
|
|
244
|
+
"verified": false,
|
|
245
|
+
"source": "local",
|
|
246
|
+
"tags": [
|
|
247
|
+
"global"
|
|
248
|
+
],
|
|
249
|
+
"localPath": "/Users/oreph/.claude/commands/frexplorer.md"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "lightspark-sdk",
|
|
253
|
+
"name": "Lightspark Sdk",
|
|
254
|
+
"provider": "AgenticLedger",
|
|
255
|
+
"description": ">-",
|
|
256
|
+
"category": "global",
|
|
257
|
+
"verified": false,
|
|
258
|
+
"source": "local",
|
|
259
|
+
"tags": [
|
|
260
|
+
"global"
|
|
261
|
+
],
|
|
262
|
+
"localPath": "/Users/oreph/.claude/commands/lightspark-sdk.md"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"id": "opAgentHubAddFeatureLicense",
|
|
266
|
+
"name": "OpAgentHubAddFeatureLicense",
|
|
267
|
+
"provider": "AgenticLedger",
|
|
268
|
+
"description": "'What this feature does' },",
|
|
269
|
+
"category": "global",
|
|
270
|
+
"verified": false,
|
|
271
|
+
"source": "local",
|
|
272
|
+
"tags": [
|
|
273
|
+
"global"
|
|
274
|
+
],
|
|
275
|
+
"localPath": "/Users/oreph/.claude/commands/opAgentHubAddFeatureLicense.md"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"id": "opAgents_AddNew",
|
|
279
|
+
"name": "OpAgents AddNew",
|
|
280
|
+
"provider": "AgenticLedger",
|
|
281
|
+
"description": "Add a new agent to the channelToAgentToClaude gateway. Gathers agent info (or accepts it inline), creates folder structure, writes system prompt, updates config.json, registers MCPs, rebuilds, and restarts the service. Use when adding a new phone-accessible Claude agent.",
|
|
282
|
+
"category": "global",
|
|
283
|
+
"verified": false,
|
|
284
|
+
"source": "local",
|
|
285
|
+
"tags": [
|
|
286
|
+
"global"
|
|
287
|
+
],
|
|
288
|
+
"localPath": "/Users/oreph/.claude/commands/opAgents_AddNew.md"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "opDeployPaths",
|
|
292
|
+
"name": "OpDeployPaths",
|
|
293
|
+
"provider": "AgenticLedger",
|
|
294
|
+
"description": "",
|
|
295
|
+
"category": "global",
|
|
296
|
+
"verified": false,
|
|
297
|
+
"source": "local",
|
|
298
|
+
"tags": [
|
|
299
|
+
"global"
|
|
300
|
+
],
|
|
301
|
+
"localPath": "/Users/oreph/.claude/commands/opDeployPaths.md"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "opMCPAddTools",
|
|
305
|
+
"name": "OpMCPAddTools",
|
|
306
|
+
"provider": "AgenticLedger",
|
|
307
|
+
"description": "\"Add new tools to an existing MCP server. Updates api-client, tools, tests, docs, AgentHub copy, and MCPLive demo. Use when new API endpoints need to be added to an already-released MCP server.\"",
|
|
308
|
+
"category": "global",
|
|
309
|
+
"verified": false,
|
|
310
|
+
"source": "local",
|
|
311
|
+
"tags": [
|
|
312
|
+
"global"
|
|
313
|
+
],
|
|
314
|
+
"localPath": "/Users/oreph/.claude/commands/opMCPAddTools.md"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"id": "opMCPAgentLiteCreate",
|
|
318
|
+
"name": "OpMCPAgentLiteCreate",
|
|
319
|
+
"provider": "AgenticLedger",
|
|
320
|
+
"description": "Create production MCP servers WITH a bundled AgentLite demo agent. Scaffolds MCP server + full AI chat product (Express + React + PostgreSQL). Deploy both on Railway as a single service.",
|
|
321
|
+
"category": "global",
|
|
322
|
+
"verified": false,
|
|
323
|
+
"source": "local",
|
|
324
|
+
"tags": [
|
|
325
|
+
"global"
|
|
326
|
+
],
|
|
327
|
+
"localPath": "/Users/oreph/.claude/commands/opMCPAgentLiteCreate.md"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"id": "opMCPExpose",
|
|
331
|
+
"name": "OpMCPExpose",
|
|
332
|
+
"provider": "AgenticLedger",
|
|
333
|
+
"description": "Take an existing stdio MCP server and expose it as a Streamable HTTP server with a public URL. Dual-mode auth (Bearer passthrough + OAuth 2.0 Client Credentials) so it works with Claude Code, Claude Desktop, AND Claude.ai Cowork/agent platforms. Duplicates the MCP into a new folder, adds Express + Streamable HTTP transport, creates a GitHub repo under agenticledger org, deploys to Railway, and tests end-to-end. No hardcoded API keys on the server. Use when someone asks for an MCP server URL or you need to expose an MCP over HTTP.",
|
|
334
|
+
"category": "global",
|
|
335
|
+
"verified": false,
|
|
336
|
+
"source": "local",
|
|
337
|
+
"tags": [
|
|
338
|
+
"global"
|
|
339
|
+
],
|
|
340
|
+
"localPath": "/Users/oreph/.claude/commands/opMCPExpose.md"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"id": "opMCPcreate",
|
|
344
|
+
"name": "OpMCPcreate",
|
|
345
|
+
"provider": "AgenticLedger",
|
|
346
|
+
"description": "Create production MCP servers following the proven Orphil/AgenticLedger pattern. Scaffolds all files, generates interactive docs, and builds test suites. Use when building MCP servers for any API or service.",
|
|
347
|
+
"category": "global",
|
|
348
|
+
"verified": false,
|
|
349
|
+
"source": "local",
|
|
350
|
+
"tags": [
|
|
351
|
+
"global"
|
|
352
|
+
],
|
|
353
|
+
"localPath": "/Users/oreph/.claude/commands/opMCPcreate.md"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"id": "opMCPdocs",
|
|
357
|
+
"name": "OpMCPdocs",
|
|
358
|
+
"provider": "AgenticLedger",
|
|
359
|
+
"description": "\"Generate an interactive MCP Tool Documentation page for any project's MCP server. The Swagger-builder equivalent for MCP tools. Creates a React component (McpDocsPage.tsx) with categorized tool cards, parameter tables, search, expand/collapse, copy buttons, and example blocks. Reads the MCP tool definitions from the project's server/mcp-server/tools/ directory.\"",
|
|
360
|
+
"category": "global",
|
|
361
|
+
"verified": false,
|
|
362
|
+
"source": "local",
|
|
363
|
+
"tags": [
|
|
364
|
+
"global"
|
|
365
|
+
],
|
|
366
|
+
"localPath": "/Users/oreph/.claude/commands/opMCPdocs.md"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"id": "opMCPfullrelease",
|
|
370
|
+
"name": "OpMCPfullrelease",
|
|
371
|
+
"provider": "AgenticLedger",
|
|
372
|
+
"description": "\"Full MCP server lifecycle: create, demo, agent hub, catalog. Creates production MCP server (Phases 1-7), adds to MCPLive demo hub (Phase 8), bundles in AgentHub (Phase 8.5), registers in PlatformAuth catalog (Phase 9). Use when building AND releasing MCP servers end-to-end.\"",
|
|
373
|
+
"category": "global",
|
|
374
|
+
"verified": false,
|
|
375
|
+
"source": "local",
|
|
376
|
+
"tags": [
|
|
377
|
+
"global"
|
|
378
|
+
],
|
|
379
|
+
"localPath": "/Users/oreph/.claude/commands/opMCPfullrelease.md"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"id": "opSkillBackup",
|
|
383
|
+
"name": "OpSkillBackup",
|
|
384
|
+
"provider": "AgenticLedger",
|
|
385
|
+
"description": "Backup all Claude skills to ClaudeSkillTransfer folder for syncing to another computer. Zips commands/, settings, MCP config, and memory. Logs the backup date.",
|
|
386
|
+
"category": "global",
|
|
387
|
+
"verified": false,
|
|
388
|
+
"source": "local",
|
|
389
|
+
"tags": [
|
|
390
|
+
"global"
|
|
391
|
+
],
|
|
392
|
+
"localPath": "/Users/oreph/.claude/commands/opSkillBackup.md"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "opWebappTestFactory",
|
|
396
|
+
"name": "OpWebappTestFactory",
|
|
397
|
+
"provider": "AgenticLedger",
|
|
398
|
+
"description": "\"Auto-generate a complete runtest/ E2E harness (Smoke, Use, Volume) for any web app. Discovers routes, endpoints, entities, AND the core product workflow. Generates CRUD tests, workflow chain tests, branch tests, and utility endpoint coverage for near-100% API coverage. Use when you want automated browser testing for any web application.\"",
|
|
399
|
+
"category": "global",
|
|
400
|
+
"verified": false,
|
|
401
|
+
"source": "local",
|
|
402
|
+
"tags": [
|
|
403
|
+
"global"
|
|
404
|
+
],
|
|
405
|
+
"localPath": "/Users/oreph/.claude/commands/opWebappTestFactory.md"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"id": "opappbuild_agentready",
|
|
409
|
+
"name": "Opappbuild Agentready",
|
|
410
|
+
"provider": "AgenticLedger",
|
|
411
|
+
"description": "\"Master orchestrator: make any project fully agent-ready with APIs, API docs, MCP server, and MCP docs. Delegates to child skills (/opswaggerbuilder, /opMCPcreate, /opMCPdocs) and ensures all 4 layers are built and connected. Use when setting up a new project for MCP/agent access or adding agent capabilities to an existing app.\"",
|
|
412
|
+
"category": "global",
|
|
413
|
+
"verified": false,
|
|
414
|
+
"source": "local",
|
|
415
|
+
"tags": [
|
|
416
|
+
"global"
|
|
417
|
+
],
|
|
418
|
+
"localPath": "/Users/oreph/.claude/commands/opappbuild_agentready.md"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"id": "opappbuild_agentready_trueup",
|
|
422
|
+
"name": "Opappbuild Agentready Trueup",
|
|
423
|
+
"provider": "AgenticLedger",
|
|
424
|
+
"description": "\"Audit and catch up a project's API docs, MCP tools, MCP docs, and api-client methods. Compares API routes against docs and MCP coverage, reports gaps, and fixes them. Use after adding features or anytime you want to see how far behind documentation is. Does NOT cover tests \u2014 use /opappbuild_testsuite_trueup for that.\"",
|
|
425
|
+
"category": "global",
|
|
426
|
+
"verified": false,
|
|
427
|
+
"source": "local",
|
|
428
|
+
"tags": [
|
|
429
|
+
"global"
|
|
430
|
+
],
|
|
431
|
+
"localPath": "/Users/oreph/.claude/commands/opappbuild_agentready_trueup.md"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"id": "opappbuild_testsuite",
|
|
435
|
+
"name": "Opappbuild Testsuite",
|
|
436
|
+
"provider": "AgenticLedger",
|
|
437
|
+
"description": "\"Set up the Comprehensive Test Suite for any project and bake testing discipline into CLAUDE.md. Delegates to /optestcreate for scaffolding, then adds standing orders to CLAUDE.md ensuring tests are created and run after every feature. Use when starting a new project or adding test infrastructure.\"",
|
|
438
|
+
"category": "global",
|
|
439
|
+
"verified": false,
|
|
440
|
+
"source": "local",
|
|
441
|
+
"tags": [
|
|
442
|
+
"global"
|
|
443
|
+
],
|
|
444
|
+
"localPath": "/Users/oreph/.claude/commands/opappbuild_testsuite.md"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"id": "opappbuild_testsuite_trueup",
|
|
448
|
+
"name": "Opappbuild Testsuite Trueup",
|
|
449
|
+
"provider": "AgenticLedger",
|
|
450
|
+
"description": "\"Audit test coverage gaps against API routes. Compares API route domains against Comprehensive Test Suite files, reports missing tests, and adds them. Use after adding features or anytime you want to check test coverage. Does NOT cover API docs or MCP \u2014 use /opappbuild_agentready_trueup for that.\"",
|
|
451
|
+
"category": "global",
|
|
452
|
+
"verified": false,
|
|
453
|
+
"source": "local",
|
|
454
|
+
"tags": [
|
|
455
|
+
"global"
|
|
456
|
+
],
|
|
457
|
+
"localPath": "/Users/oreph/.claude/commands/opappbuild_testsuite_trueup.md"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": "opbranchsetup",
|
|
461
|
+
"name": "Opbranchsetup",
|
|
462
|
+
"provider": "AgenticLedger",
|
|
463
|
+
"description": "Standardize git branch structure to main + Claude_Desktop_Local + Claude_Web_Local. Use when setting up a repo for multi-environment Claude development.",
|
|
464
|
+
"category": "global",
|
|
465
|
+
"verified": false,
|
|
466
|
+
"source": "local",
|
|
467
|
+
"tags": [
|
|
468
|
+
"global"
|
|
469
|
+
],
|
|
470
|
+
"localPath": "/Users/oreph/.claude/commands/opbranchsetup.md"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"id": "opclient_processcontrols_viz",
|
|
474
|
+
"name": "Opclient Processcontrols Viz",
|
|
475
|
+
"provider": "AgenticLedger",
|
|
476
|
+
"description": "\"Generate a standalone HTML visualization of business processes, steps, and controls matching the P&C platform's exact visual style with full interactivity. Use when the user provides process documents, SOPs, or control matrices and wants a polished dark-themed HTML report. Supports incremental building (add processes one at a time) then produce final combined HTML. Output goes to ~/Desktop/APPs/Process&Controls_Ondemand_Outputs/\"",
|
|
477
|
+
"category": "global",
|
|
478
|
+
"verified": false,
|
|
479
|
+
"source": "local",
|
|
480
|
+
"tags": [
|
|
481
|
+
"global"
|
|
482
|
+
],
|
|
483
|
+
"localPath": "/Users/oreph/.claude/commands/opclient_processcontrols_viz.md"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"id": "opcodereview",
|
|
487
|
+
"name": "Opcodereview",
|
|
488
|
+
"provider": "AgenticLedger",
|
|
489
|
+
"description": "Review all work done in this session for best practices, efficiency, and security",
|
|
490
|
+
"category": "global",
|
|
491
|
+
"verified": false,
|
|
492
|
+
"source": "local",
|
|
493
|
+
"tags": [
|
|
494
|
+
"global"
|
|
495
|
+
],
|
|
496
|
+
"localPath": "/Users/oreph/.claude/commands/opcodereview.md"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"id": "opcompact",
|
|
500
|
+
"name": "Opcompact",
|
|
501
|
+
"provider": "AgenticLedger",
|
|
502
|
+
"description": "Save important context from the current agent conversation before resetting the session. Writes key information to the agent's persistent context.md file so it survives session resets.",
|
|
503
|
+
"category": "global",
|
|
504
|
+
"verified": false,
|
|
505
|
+
"source": "local",
|
|
506
|
+
"tags": [
|
|
507
|
+
"global"
|
|
508
|
+
],
|
|
509
|
+
"localPath": "/Users/oreph/.claude/commands/opcompact.md"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"id": "opdevlog",
|
|
513
|
+
"name": "Opdevlog",
|
|
514
|
+
"provider": "AgenticLedger",
|
|
515
|
+
"description": "Create or update the development log to track session progress and enable continuity",
|
|
516
|
+
"category": "global",
|
|
517
|
+
"verified": false,
|
|
518
|
+
"source": "local",
|
|
519
|
+
"tags": [
|
|
520
|
+
"global"
|
|
521
|
+
],
|
|
522
|
+
"localPath": "/Users/oreph/.claude/commands/opdevlog.md"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"id": "opfullrelease",
|
|
526
|
+
"name": "Opfullrelease",
|
|
527
|
+
"provider": "AgenticLedger",
|
|
528
|
+
"description": "Execute full feature release workflow with documentation, testing, and UI verification",
|
|
529
|
+
"category": "global",
|
|
530
|
+
"verified": false,
|
|
531
|
+
"source": "local",
|
|
532
|
+
"tags": [
|
|
533
|
+
"global"
|
|
534
|
+
],
|
|
535
|
+
"localPath": "/Users/oreph/.claude/commands/opfullrelease.md"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"id": "opgetlogs",
|
|
539
|
+
"name": "Opgetlogs",
|
|
540
|
+
"provider": "AgenticLedger",
|
|
541
|
+
"description": "",
|
|
542
|
+
"category": "global",
|
|
543
|
+
"verified": false,
|
|
544
|
+
"source": "local",
|
|
545
|
+
"tags": [
|
|
546
|
+
"global"
|
|
547
|
+
],
|
|
548
|
+
"localPath": "/Users/oreph/.claude/commands/opgetlogs.md"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"id": "opprodoverview",
|
|
552
|
+
"name": "Opprodoverview",
|
|
553
|
+
"provider": "AgenticLedger",
|
|
554
|
+
"description": "Create or update the product overview document with all domains, features, and architecture",
|
|
555
|
+
"category": "global",
|
|
556
|
+
"verified": false,
|
|
557
|
+
"source": "local",
|
|
558
|
+
"tags": [
|
|
559
|
+
"global"
|
|
560
|
+
],
|
|
561
|
+
"localPath": "/Users/oreph/.claude/commands/opprodoverview.md"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"id": "opralph",
|
|
565
|
+
"name": "Opralph",
|
|
566
|
+
"provider": "AgenticLedger",
|
|
567
|
+
"description": "",
|
|
568
|
+
"category": "global",
|
|
569
|
+
"verified": false,
|
|
570
|
+
"source": "local",
|
|
571
|
+
"tags": [
|
|
572
|
+
"global"
|
|
573
|
+
],
|
|
574
|
+
"localPath": "/Users/oreph/.claude/commands/opralph.md"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"id": "opreset",
|
|
578
|
+
"name": "Opreset",
|
|
579
|
+
"provider": "AgenticLedger",
|
|
580
|
+
"description": "Reset an agent's persistent session in the channelToAgentToClaude gateway. Clears session state so the next message starts a fresh conversation. Use /opcompact first to save important context.",
|
|
581
|
+
"category": "global",
|
|
582
|
+
"verified": false,
|
|
583
|
+
"source": "local",
|
|
584
|
+
"tags": [
|
|
585
|
+
"global"
|
|
586
|
+
],
|
|
587
|
+
"localPath": "/Users/oreph/.claude/commands/opreset.md"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"id": "opskillslist",
|
|
591
|
+
"name": "Opskillslist",
|
|
592
|
+
"provider": "AgenticLedger",
|
|
593
|
+
"description": "\"List all available skills with their descriptions, organized by category. Use anytime you want to see what skills you have.\"",
|
|
594
|
+
"category": "global",
|
|
595
|
+
"verified": false,
|
|
596
|
+
"source": "local",
|
|
597
|
+
"tags": [
|
|
598
|
+
"global"
|
|
599
|
+
],
|
|
600
|
+
"localPath": "/Users/oreph/.claude/commands/opskillslist.md"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"id": "opswaggerbuilder",
|
|
604
|
+
"name": "Opswaggerbuilder",
|
|
605
|
+
"provider": "AgenticLedger",
|
|
606
|
+
"description": "Generate an interactive Swagger-like API documentation and testing page for any web application. Creates a fully functional API playground with endpoint navigation, request builder, live execution, cURL generation, and response viewer. Use when adding API docs to any project.",
|
|
607
|
+
"category": "global",
|
|
608
|
+
"verified": false,
|
|
609
|
+
"source": "local",
|
|
610
|
+
"tags": [
|
|
611
|
+
"global"
|
|
612
|
+
],
|
|
613
|
+
"localPath": "/Users/oreph/.claude/commands/opswaggerbuilder.md"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"id": "optestadd",
|
|
617
|
+
"name": "Optestadd",
|
|
618
|
+
"provider": "AgenticLedger",
|
|
619
|
+
"description": "Add tests to an existing Comprehensive Test Suite for newly built features",
|
|
620
|
+
"category": "global",
|
|
621
|
+
"verified": false,
|
|
622
|
+
"source": "local",
|
|
623
|
+
"tags": [
|
|
624
|
+
"global"
|
|
625
|
+
],
|
|
626
|
+
"localPath": "/Users/oreph/.claude/commands/optestadd.md"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"id": "optestcreate",
|
|
630
|
+
"name": "Optestcreate",
|
|
631
|
+
"provider": "AgenticLedger",
|
|
632
|
+
"description": "Create a comprehensive test suite structure for the current project with domain-based organization",
|
|
633
|
+
"category": "global",
|
|
634
|
+
"verified": false,
|
|
635
|
+
"source": "local",
|
|
636
|
+
"tags": [
|
|
637
|
+
"global"
|
|
638
|
+
],
|
|
639
|
+
"localPath": "/Users/oreph/.claude/commands/optestcreate.md"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"id": "rw_database",
|
|
643
|
+
"name": "Rw Database",
|
|
644
|
+
"provider": "AgenticLedger",
|
|
645
|
+
"description": "",
|
|
646
|
+
"category": "global",
|
|
647
|
+
"verified": false,
|
|
648
|
+
"source": "local",
|
|
649
|
+
"tags": [
|
|
650
|
+
"global"
|
|
651
|
+
],
|
|
652
|
+
"localPath": "/Users/oreph/.claude/commands/rw_database.md"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"id": "rw_deploy",
|
|
656
|
+
"name": "Rw Deploy",
|
|
657
|
+
"provider": "AgenticLedger",
|
|
658
|
+
"description": "",
|
|
659
|
+
"category": "global",
|
|
660
|
+
"verified": false,
|
|
661
|
+
"source": "local",
|
|
662
|
+
"tags": [
|
|
663
|
+
"global"
|
|
664
|
+
],
|
|
665
|
+
"localPath": "/Users/oreph/.claude/commands/rw_deploy.md"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"id": "rw_deployment",
|
|
669
|
+
"name": "Rw Deployment",
|
|
670
|
+
"provider": "AgenticLedger",
|
|
671
|
+
"description": "",
|
|
672
|
+
"category": "global",
|
|
673
|
+
"verified": false,
|
|
674
|
+
"source": "local",
|
|
675
|
+
"tags": [
|
|
676
|
+
"global"
|
|
677
|
+
],
|
|
678
|
+
"localPath": "/Users/oreph/.claude/commands/rw_deployment.md"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"id": "rw_docs",
|
|
682
|
+
"name": "Rw Docs",
|
|
683
|
+
"provider": "AgenticLedger",
|
|
684
|
+
"description": "",
|
|
685
|
+
"category": "global",
|
|
686
|
+
"verified": false,
|
|
687
|
+
"source": "local",
|
|
688
|
+
"tags": [
|
|
689
|
+
"global"
|
|
690
|
+
],
|
|
691
|
+
"localPath": "/Users/oreph/.claude/commands/rw_docs.md"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"id": "rw_domain",
|
|
695
|
+
"name": "Rw Domain",
|
|
696
|
+
"provider": "AgenticLedger",
|
|
697
|
+
"description": "",
|
|
698
|
+
"category": "global",
|
|
699
|
+
"verified": false,
|
|
700
|
+
"source": "local",
|
|
701
|
+
"tags": [
|
|
702
|
+
"global"
|
|
703
|
+
],
|
|
704
|
+
"localPath": "/Users/oreph/.claude/commands/rw_domain.md"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"id": "rw_environment",
|
|
708
|
+
"name": "Rw Environment",
|
|
709
|
+
"provider": "AgenticLedger",
|
|
710
|
+
"description": "",
|
|
711
|
+
"category": "global",
|
|
712
|
+
"verified": false,
|
|
713
|
+
"source": "local",
|
|
714
|
+
"tags": [
|
|
715
|
+
"global"
|
|
716
|
+
],
|
|
717
|
+
"localPath": "/Users/oreph/.claude/commands/rw_environment.md"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"id": "rw_metrics",
|
|
721
|
+
"name": "Rw Metrics",
|
|
722
|
+
"provider": "AgenticLedger",
|
|
723
|
+
"description": "",
|
|
724
|
+
"category": "global",
|
|
725
|
+
"verified": false,
|
|
726
|
+
"source": "local",
|
|
727
|
+
"tags": [
|
|
728
|
+
"global"
|
|
729
|
+
],
|
|
730
|
+
"localPath": "/Users/oreph/.claude/commands/rw_metrics.md"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"id": "rw_new",
|
|
734
|
+
"name": "Rw New",
|
|
735
|
+
"provider": "AgenticLedger",
|
|
736
|
+
"description": "",
|
|
737
|
+
"category": "global",
|
|
738
|
+
"verified": false,
|
|
739
|
+
"source": "local",
|
|
740
|
+
"tags": [
|
|
741
|
+
"global"
|
|
742
|
+
],
|
|
743
|
+
"localPath": "/Users/oreph/.claude/commands/rw_new.md"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"id": "rw_projects",
|
|
747
|
+
"name": "Rw Projects",
|
|
748
|
+
"provider": "AgenticLedger",
|
|
749
|
+
"description": "",
|
|
750
|
+
"category": "global",
|
|
751
|
+
"verified": false,
|
|
752
|
+
"source": "local",
|
|
753
|
+
"tags": [
|
|
754
|
+
"global"
|
|
755
|
+
],
|
|
756
|
+
"localPath": "/Users/oreph/.claude/commands/rw_projects.md"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"id": "rw_service",
|
|
760
|
+
"name": "Rw Service",
|
|
761
|
+
"provider": "AgenticLedger",
|
|
762
|
+
"description": "",
|
|
763
|
+
"category": "global",
|
|
764
|
+
"verified": false,
|
|
765
|
+
"source": "local",
|
|
766
|
+
"tags": [
|
|
767
|
+
"global"
|
|
768
|
+
],
|
|
769
|
+
"localPath": "/Users/oreph/.claude/commands/rw_service.md"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"id": "rw_status",
|
|
773
|
+
"name": "Rw Status",
|
|
774
|
+
"provider": "AgenticLedger",
|
|
775
|
+
"description": "",
|
|
776
|
+
"category": "global",
|
|
777
|
+
"verified": false,
|
|
778
|
+
"source": "local",
|
|
779
|
+
"tags": [
|
|
780
|
+
"global"
|
|
781
|
+
],
|
|
782
|
+
"localPath": "/Users/oreph/.claude/commands/rw_status.md"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"id": "rw_templates",
|
|
786
|
+
"name": "Rw Templates",
|
|
787
|
+
"provider": "AgenticLedger",
|
|
788
|
+
"description": "",
|
|
789
|
+
"category": "global",
|
|
790
|
+
"verified": false,
|
|
791
|
+
"source": "local",
|
|
792
|
+
"tags": [
|
|
793
|
+
"global"
|
|
794
|
+
],
|
|
795
|
+
"localPath": "/Users/oreph/.claude/commands/rw_templates.md"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"id": "wac_impairment",
|
|
799
|
+
"name": "Wac Impairment",
|
|
800
|
+
"provider": "AgenticLedger",
|
|
801
|
+
"description": "Process crypto transactions CSV to compute WAC (Weighted Average Cost) impairment adjustments. Calculates D-tracking, year-end recapture, impairment expense, and correct realized G/L. Use when applying annual impairment to existing WAC-based crypto accounting without recalculating historical disposals. Input is a CSV of transactions.",
|
|
802
|
+
"category": "global",
|
|
803
|
+
"verified": false,
|
|
804
|
+
"source": "local",
|
|
805
|
+
"tags": [
|
|
806
|
+
"global"
|
|
807
|
+
],
|
|
808
|
+
"localPath": "/Users/oreph/.claude/commands/wac_impairment.md"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"id": "ai41_app_orchestrator",
|
|
812
|
+
"name": "App Build Orchestrator",
|
|
813
|
+
"provider": "AgenticLedger",
|
|
814
|
+
"description": "Master orchestration runbook for building full-stack apps autonomously",
|
|
815
|
+
"category": "devtools",
|
|
816
|
+
"verified": true,
|
|
817
|
+
"source": "agenticledger/platform",
|
|
818
|
+
"tags": [
|
|
819
|
+
"app",
|
|
820
|
+
"build",
|
|
821
|
+
"orchestrator"
|
|
822
|
+
],
|
|
823
|
+
"localPath": "registry/skills/platform/ai41_app_orchestrator.md",
|
|
824
|
+
"fetch": {
|
|
825
|
+
"type": "file"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"id": "ai41_app_scaffold",
|
|
830
|
+
"name": "App Scaffold",
|
|
831
|
+
"provider": "AgenticLedger",
|
|
832
|
+
"description": "Deterministic project scaffolding for Express 5 + React 19 + Prisma + Tailwind + shadcn/ui",
|
|
833
|
+
"category": "devtools",
|
|
834
|
+
"verified": true,
|
|
835
|
+
"source": "agenticledger/platform",
|
|
836
|
+
"tags": [
|
|
837
|
+
"app",
|
|
838
|
+
"scaffold",
|
|
839
|
+
"template"
|
|
840
|
+
],
|
|
841
|
+
"localPath": "registry/skills/platform/ai41_app_scaffold.md",
|
|
842
|
+
"fetch": {
|
|
843
|
+
"type": "file"
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"id": "ai41_app_patterns",
|
|
848
|
+
"name": "App Patterns",
|
|
849
|
+
"provider": "AgenticLedger",
|
|
850
|
+
"description": "Architecture patterns and coding conventions for Express + React apps",
|
|
851
|
+
"category": "devtools",
|
|
852
|
+
"verified": true,
|
|
853
|
+
"source": "agenticledger/platform",
|
|
854
|
+
"tags": [
|
|
855
|
+
"app",
|
|
856
|
+
"patterns",
|
|
857
|
+
"conventions"
|
|
858
|
+
],
|
|
859
|
+
"localPath": "registry/skills/platform/ai41_app_patterns.md",
|
|
860
|
+
"fetch": {
|
|
861
|
+
"type": "file"
|
|
862
|
+
}
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"id": "ai41_app_verify",
|
|
866
|
+
"name": "App Verify",
|
|
867
|
+
"provider": "AgenticLedger",
|
|
868
|
+
"description": "Build verification loop \u2014 runs builds, reads errors, auto-fixes code",
|
|
869
|
+
"category": "devtools",
|
|
870
|
+
"verified": true,
|
|
871
|
+
"source": "agenticledger/platform",
|
|
872
|
+
"tags": [
|
|
873
|
+
"app",
|
|
874
|
+
"verify",
|
|
875
|
+
"build"
|
|
876
|
+
],
|
|
877
|
+
"localPath": "registry/skills/platform/ai41_app_verify.md",
|
|
878
|
+
"fetch": {
|
|
879
|
+
"type": "file"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"id": "ai41_app_deploy",
|
|
884
|
+
"name": "App Deploy",
|
|
885
|
+
"provider": "AgenticLedger",
|
|
886
|
+
"description": "Deploy full-stack apps to Railway via CLI with health verification",
|
|
887
|
+
"category": "devtools",
|
|
888
|
+
"verified": true,
|
|
889
|
+
"source": "agenticledger/platform",
|
|
890
|
+
"tags": [
|
|
891
|
+
"app",
|
|
892
|
+
"deploy",
|
|
893
|
+
"railway"
|
|
894
|
+
],
|
|
895
|
+
"localPath": "registry/skills/platform/ai41_app_deploy.md",
|
|
896
|
+
"fetch": {
|
|
897
|
+
"type": "file"
|
|
898
|
+
}
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"id": "ai41_app_register",
|
|
902
|
+
"name": "App Register",
|
|
903
|
+
"provider": "AgenticLedger",
|
|
904
|
+
"description": "Register deployed app in platform and create developer agent",
|
|
905
|
+
"category": "devtools",
|
|
906
|
+
"verified": true,
|
|
907
|
+
"source": "agenticledger/platform",
|
|
908
|
+
"tags": [
|
|
909
|
+
"app",
|
|
910
|
+
"register",
|
|
911
|
+
"agent"
|
|
912
|
+
],
|
|
913
|
+
"localPath": "registry/skills/platform/ai41_app_register.md",
|
|
914
|
+
"fetch": {
|
|
915
|
+
"type": "file"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"id": "ext-tdd",
|
|
920
|
+
"name": "Test-Driven Development",
|
|
921
|
+
"provider": "affaan-m",
|
|
922
|
+
"description": "Write failing tests first, then implement.",
|
|
923
|
+
"category": "devtools",
|
|
924
|
+
"verified": false,
|
|
925
|
+
"source": "github:affaan-m/everything-claude-code/commands/tdd.md",
|
|
926
|
+
"tags": [
|
|
927
|
+
"devtools",
|
|
928
|
+
"external"
|
|
929
|
+
],
|
|
930
|
+
"localPath": "registry/skills/external/tdd.md",
|
|
931
|
+
"fetch": {
|
|
932
|
+
"type": "file"
|
|
933
|
+
}
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"id": "ext-code-review",
|
|
937
|
+
"name": "Code Review",
|
|
938
|
+
"provider": "affaan-m",
|
|
939
|
+
"description": "Systematic code review workflow.",
|
|
940
|
+
"category": "devtools",
|
|
941
|
+
"verified": false,
|
|
942
|
+
"source": "github:affaan-m/everything-claude-code/commands/code-review.md",
|
|
943
|
+
"tags": [
|
|
944
|
+
"devtools",
|
|
945
|
+
"external"
|
|
946
|
+
],
|
|
947
|
+
"localPath": "registry/skills/external/code-review.md",
|
|
948
|
+
"fetch": {
|
|
949
|
+
"type": "file"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"id": "ext-systematic-debugging",
|
|
954
|
+
"name": "Systematic Debugging",
|
|
955
|
+
"provider": "affaan-m",
|
|
956
|
+
"description": "Structured debugging process.",
|
|
957
|
+
"category": "devtools",
|
|
958
|
+
"verified": false,
|
|
959
|
+
"source": "github:affaan-m/everything-claude-code/commands/systematic-debugging.md",
|
|
960
|
+
"tags": [
|
|
961
|
+
"devtools",
|
|
962
|
+
"external"
|
|
963
|
+
],
|
|
964
|
+
"localPath": "registry/skills/external/systematic-debugging.md",
|
|
965
|
+
"fetch": {
|
|
966
|
+
"type": "file"
|
|
967
|
+
}
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"id": "ext-writing-plans",
|
|
971
|
+
"name": "Write Plans",
|
|
972
|
+
"provider": "affaan-m",
|
|
973
|
+
"description": "Create detailed implementation plans.",
|
|
974
|
+
"category": "devtools",
|
|
975
|
+
"verified": false,
|
|
976
|
+
"source": "github:affaan-m/everything-claude-code/commands/writing-plans.md",
|
|
977
|
+
"tags": [
|
|
978
|
+
"devtools",
|
|
979
|
+
"external"
|
|
980
|
+
],
|
|
981
|
+
"localPath": "registry/skills/external/writing-plans.md",
|
|
982
|
+
"fetch": {
|
|
983
|
+
"type": "file"
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"id": "ext-verification-before-completion",
|
|
988
|
+
"name": "Verify Before Completing",
|
|
989
|
+
"provider": "affaan-m",
|
|
990
|
+
"description": "Run checks before marking work done.",
|
|
991
|
+
"category": "devtools",
|
|
992
|
+
"verified": false,
|
|
993
|
+
"source": "github:affaan-m/everything-claude-code/commands/verification-before-completion.md",
|
|
994
|
+
"tags": [
|
|
995
|
+
"devtools",
|
|
996
|
+
"external"
|
|
997
|
+
],
|
|
998
|
+
"localPath": "registry/skills/external/verification-before-completion.md",
|
|
999
|
+
"fetch": {
|
|
1000
|
+
"type": "file"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"id": "ext-brainstorming",
|
|
1005
|
+
"name": "Brainstorming",
|
|
1006
|
+
"provider": "affaan-m",
|
|
1007
|
+
"description": "Design features through collaborative dialogue.",
|
|
1008
|
+
"category": "devtools",
|
|
1009
|
+
"verified": false,
|
|
1010
|
+
"source": "github:affaan-m/everything-claude-code/commands/brainstorming.md",
|
|
1011
|
+
"tags": [
|
|
1012
|
+
"devtools",
|
|
1013
|
+
"external"
|
|
1014
|
+
],
|
|
1015
|
+
"localPath": "registry/skills/external/brainstorming.md",
|
|
1016
|
+
"fetch": {
|
|
1017
|
+
"type": "file"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"id": "ext-frontend-slides",
|
|
1022
|
+
"name": "Frontend Slides",
|
|
1023
|
+
"provider": "affaan-m",
|
|
1024
|
+
"description": "Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files.",
|
|
1025
|
+
"category": "design",
|
|
1026
|
+
"verified": false,
|
|
1027
|
+
"source": "github:affaan-m/everything-claude-code/skills/frontend-slides/SKILL.md",
|
|
1028
|
+
"tags": [
|
|
1029
|
+
"design",
|
|
1030
|
+
"external"
|
|
1031
|
+
],
|
|
1032
|
+
"localPath": "registry/skills/external/frontend-slides.md",
|
|
1033
|
+
"fetch": {
|
|
1034
|
+
"type": "file"
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"id": "ext-frontend-patterns",
|
|
1039
|
+
"name": "Frontend Patterns",
|
|
1040
|
+
"provider": "affaan-m",
|
|
1041
|
+
"description": "Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.",
|
|
1042
|
+
"category": "devtools",
|
|
1043
|
+
"verified": false,
|
|
1044
|
+
"source": "github:affaan-m/everything-claude-code/skills/frontend-patterns/SKILL.md",
|
|
1045
|
+
"tags": [
|
|
1046
|
+
"devtools",
|
|
1047
|
+
"external"
|
|
1048
|
+
],
|
|
1049
|
+
"localPath": "registry/skills/external/frontend-patterns.md",
|
|
1050
|
+
"fetch": {
|
|
1051
|
+
"type": "file"
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
]
|
|
1055
|
+
}
|