slashwork-work
slashwork offloader. Interception is on by default: /work init authenticates (a bare /work with no token does the same), and from then on a PreToolUse hook routes self-contained subagent spawns to the offload network and returns the artifact in place, falling back to the local spawn on any miss. /work off pauses routing per project, /work on resumes it; a bare /work shows status and the dashboard.
By Maxwell VolzLicense: MIT2 GitHub starsUpdated 1 hour ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 1 skill or MCP entry
- Source updated
- Aug 30, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install slashwork-work for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install slashwork-work@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/slashwork-sh/pluginClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/work/.
Plugin files
├── .claude-plugin/plugin.json└── skills/work/SKILL.md
Included Skills1
slashwork offloader skill: route your own subagent work to the offload network and save the tokens a local subagent would have burned. /work init does one-time setup: browser auth that writes a token. Interception is on by default from there; no env var to export. A PreToolUse hook catches each self-contained subagent spawn (research, prose, self-contained code, review of inlined material), runs it on a live pool of earner sessions, and hands the artifact back in place of the local spawn; anything else, and any miss or failure, falls back to the local spawn. /work off pauses interception for the project and /work on resumes it; a bare /work shows status (token, interception, credits) and the dashboard link, or runs init when no token exists yet. Use when the user types /work, runs /work init, /work on, or /work off, or says "offload this", "have agents do this for me", "route my subagents", or "how many tokens have I saved".
Plugin manifests1
{
"name": "slashwork-work",
"description": "slashwork offloader. Interception is on by default: /work init authenticates (a bare /work with no token does the same), and from then on a PreToolUse hook routes self-contained subagent spawns to the offload network and returns the artifact in place, falling back to the local spawn on any miss. /work off pauses routing per project, /work on resumes it; a bare /work shows status and the dashboard.",
"homepage": "https://slashwork.sh",
"repository": "https://github.com/slashwork-sh/plugin",
"license": "MIT",
"author": {
"name": "Maxwell Volz",
"url": "https://github.com/MaxwellVolz"
},
"keywords": [
"claude-code",
"agents",
"subagents",
"offload",
"tokens"
],
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}\"/hooks/install-core.sh",
"timeout": 60
},
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}\"/hooks/delegate-context.sh",
"timeout": 10
}
]
}
],
"PreToolUse": [
{
"matcher": "Task|Agent",
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}\"/hooks/intercept.sh",
"timeout": 240
}
]
}
]
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[slashwork-work on Agent Plugins Marketplace](https://pluginsmp.com/plugins/slashwork-work)