@contextium/cli 0.7.2 → 0.7.4

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.
@@ -1 +1 @@
1
- {"version":3,"file":"setup-claude.d.ts","sourceRoot":"","sources":["../../src/commands/setup-claude.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAMnC,eAAO,MAAM,kBAAkB,SAgH3B,CAAA"}
1
+ {"version":3,"file":"setup-claude.d.ts","sourceRoot":"","sources":["../../src/commands/setup-claude.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AASnC,eAAO,MAAM,kBAAkB,SAsI3B,CAAA"}
@@ -2,7 +2,9 @@ import { Command } from 'commander';
2
2
  import fs from 'fs/promises';
3
3
  import path from 'path';
4
4
  import os from 'os';
5
+ import { fileURLToPath } from 'url';
5
6
  import { chalk, ora } from '../lib/output.js';
7
+ const __dirname = path.dirname(fileURLToPath(import.meta.url));
6
8
  export const setupClaudeCommand = new Command('setup-claude')
7
9
  .description('Configure permissions for Claude Code CLI (Anthropic\'s AI coding assistant)')
8
10
  .addHelpText('after', `
@@ -62,10 +64,29 @@ ${chalk.dim('If you use other IDEs (VSCode, Cursor, etc.) without Claude Code, s
62
64
  // Write settings back
63
65
  await fs.writeFile(settingsPath, JSON.stringify(settings, null, 2) + '\n', 'utf-8');
64
66
  spinner.succeed('Claude Code permissions configured!');
67
+ // Install /ium: slash commands to ~/.claude/commands/ium/
68
+ const commandsDestDir = path.join(os.homedir(), '.claude', 'commands', 'ium');
69
+ // Skills are in skills/ium/ relative to the package root (two levels up from dist/commands/)
70
+ const skillsSrcDir = path.join(__dirname, '..', '..', 'skills', 'ium');
71
+ let skillsInstalled = false;
72
+ try {
73
+ await fs.mkdir(commandsDestDir, { recursive: true });
74
+ const skillFiles = await fs.readdir(skillsSrcDir);
75
+ await Promise.all(skillFiles
76
+ .filter(f => f.endsWith('.md'))
77
+ .map(f => fs.copyFile(path.join(skillsSrcDir, f), path.join(commandsDestDir, f))));
78
+ skillsInstalled = true;
79
+ }
80
+ catch {
81
+ // Non-fatal — skills dir may not exist in older installs
82
+ }
65
83
  console.log();
66
84
  console.log(chalk.green('✓') + ' Contextium CLI commands will no longer require permission prompts');
67
85
  console.log(chalk.dim(`Settings file: ${settingsPath}`));
68
86
  console.log(chalk.dim(`Added permission: ${permission}`));
87
+ if (skillsInstalled) {
88
+ console.log(chalk.green('✓') + ' /ium: slash commands installed to ~/.claude/commands/ium/');
89
+ }
69
90
  console.log();
70
91
  if (isGlobal) {
71
92
  console.log(chalk.bold('What this means:'));
@@ -1 +1 @@
1
- {"version":3,"file":"setup-claude.js","sourceRoot":"","sources":["../../src/commands/setup-claude.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"setup-claude.js","sourceRoot":"","sources":["../../src/commands/setup-claude.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextium/cli",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "Command-line tool for managing Contextium documentation, agents, skills, and workflows — pipe context to AI coding assistants",
5
5
  "keywords": [
6
6
  "contextium",
@@ -32,6 +32,7 @@
32
32
  },
33
33
  "files": [
34
34
  "dist",
35
+ "skills",
35
36
  "README.md"
36
37
  ],
37
38
  "publishConfig": {
@@ -0,0 +1,92 @@
1
+ ---
2
+ name: ium:create
3
+ description: Create an agent, skill, or workflow in your Contextium workspace interactively
4
+ allowed-tools:
5
+ - Bash
6
+ - AskUserQuestion
7
+ ---
8
+
9
+ <objective>
10
+ Interactively create an agent, skill, or workflow in the current Contextium workspace.
11
+ </objective>
12
+
13
+ <process>
14
+
15
+ <step name="choose_type">
16
+ Ask the user what they want to create using AskUserQuestion:
17
+ - Question: "What would you like to create?"
18
+ - Options:
19
+ - "Agent — a role that combines a system prompt and skills"
20
+ - "Skill — reusable instructions for how to do something"
21
+ - "Workflow — bundles an agent, skills, and libraries for a task"
22
+ </step>
23
+
24
+ <step name="create_skill">
25
+ If Skill selected:
26
+
27
+ Ask: "What is the skill name and what should it do?"
28
+
29
+ Then ask: "Do you want me to write the skill content based on our current conversation, or will you provide it?"
30
+
31
+ Create the skill:
32
+ ```bash
33
+ contextium skills create -w <workspace> -n "<name>" -d "<description>" -c "<content>"
34
+ ```
35
+
36
+ Confirm created and show the skill ID.
37
+ </step>
38
+
39
+ <step name="create_agent">
40
+ If Agent selected:
41
+
42
+ Ask: "What is the agent's name and role? (e.g. 'Code Reviewer — reviews PRs for best practices')"
43
+
44
+ List existing skills so the user can attach them:
45
+ ```bash
46
+ contextium skills list -w <workspace>
47
+ ```
48
+
49
+ Ask: "Which skills should this agent have? (you can add more later)"
50
+
51
+ Create the agent:
52
+ ```bash
53
+ contextium agents create -w <workspace> -n "<name>" -d "<description>" -p "<system prompt>"
54
+ ```
55
+
56
+ Attach each selected skill:
57
+ ```bash
58
+ contextium agents add-skill -w <workspace> -a "<agentId>" -s "<skillId>"
59
+ ```
60
+
61
+ Confirm created and show the agent ID.
62
+ </step>
63
+
64
+ <step name="create_workflow">
65
+ If Workflow selected:
66
+
67
+ Ask: "What is the workflow name and what task does it support?"
68
+
69
+ List available agents, skills, and libraries to bundle:
70
+ ```bash
71
+ contextium agents list -w <workspace>
72
+ contextium skills list -w <workspace>
73
+ contextium libraries -w <workspace>
74
+ ```
75
+
76
+ Ask the user which agents, skills, and libraries to include.
77
+
78
+ Create the workflow:
79
+ ```bash
80
+ contextium workflows create \
81
+ -w <workspace> \
82
+ -n "<name>" \
83
+ -d "<description>" \
84
+ --agents <agentIds> \
85
+ --skills <skillIds> \
86
+ --libraries <libraryIds>
87
+ ```
88
+
89
+ Confirm created and show the workflow ID.
90
+ </step>
91
+
92
+ </process>
@@ -0,0 +1,44 @@
1
+ ---
2
+ name: ium:help
3
+ description: Show all available Contextium /ium: commands with descriptions
4
+ allowed-tools: []
5
+ ---
6
+
7
+ <objective>
8
+ Display all available /ium: commands so the user knows what they can do with Contextium inside Claude Code.
9
+ </objective>
10
+
11
+ <process>
12
+ Output the following help reference directly — no tools needed:
13
+
14
+ ```
15
+ ╔══════════════════════════════════════════════════════════════╗
16
+ ║ Contextium Commands (/ium:) ║
17
+ ╚══════════════════════════════════════════════════════════════╝
18
+
19
+ GETTING STARTED
20
+ /ium:new-project Set up a new Contextium project from scratch —
21
+ auth, workspace, libraries, agents, skills, workflow
22
+
23
+ WORKSPACE
24
+ /ium:workspace Switch workspace with full context handoff —
25
+ saves a note before leaving, restores on arrival
26
+ /ium:sync Refresh local cache from the current workspace
27
+ /ium:status Health dashboard — auth, workspace, cache state
28
+
29
+ CONTENT
30
+ /ium:new Create a new file in a context library
31
+ /ium:create Create an agent, skill, or workflow interactively
32
+ /ium:search Search docs by query, filename, or tag
33
+ /ium:workflow Load a workflow and sync its resources into context
34
+
35
+ MARKETPLACE
36
+ /ium:marketplace Browse, install, or publish skills, agents & MCP servers
37
+
38
+ MAINTENANCE
39
+ /ium:update Update Contextium CLI and MCP server to latest versions
40
+ /ium:help Show this help reference
41
+ ```
42
+
43
+ Then ask: "What would you like to do?"
44
+ </process>
@@ -0,0 +1,73 @@
1
+ ---
2
+ name: ium:marketplace
3
+ description: Browse, install, or publish skills, agents, and MCP servers on the Contextium Marketplace
4
+ allowed-tools:
5
+ - Bash
6
+ - AskUserQuestion
7
+ ---
8
+
9
+ <objective>
10
+ Interact with the Contextium Marketplace — browse what's available, install tools into your workspace, or publish your own skills, agents, and MCP servers.
11
+ </objective>
12
+
13
+ <process>
14
+
15
+ <step name="choose_action">
16
+ Ask the user what they want to do using AskUserQuestion:
17
+ - Question: "What would you like to do on the Marketplace?"
18
+ - Options:
19
+ - "Browse & install — find skills, agents, or MCP servers to add to my workspace"
20
+ - "Publish — share a skill, agent, or MCP server with the community"
21
+ - "My installs — see what's installed in my workspace"
22
+ </step>
23
+
24
+ <step name="browse_and_install">
25
+ If Browse & install selected:
26
+
27
+ Ask: "What type of tool are you looking for?"
28
+ - Options: "Skill", "Agent", "MCP Server", "Any"
29
+
30
+ Ask: "Any keywords to search for? (or press enter to browse all)"
31
+
32
+ Run the search:
33
+ ```bash
34
+ contextium marketplace list -t <skill|agent|mcp_server> -q "<query>"
35
+ ```
36
+
37
+ Omit `-t` if "Any" was selected. Omit `-q` if no keywords given.
38
+
39
+ To see full details of a specific listing:
40
+ ```bash
41
+ contextium marketplace show <slug>
42
+ ```
43
+
44
+ Once the user picks a listing, install it:
45
+ ```bash
46
+ contextium marketplace install <slug> -w <workspace>
47
+ ```
48
+
49
+ Confirm installed and tell the user where to find it (Skills page, Agents page, etc.).
50
+ </step>
51
+
52
+ <step name="publish">
53
+ If Publish selected:
54
+
55
+ The CLI does not support publishing — direct the user to the web marketplace.
56
+
57
+ "Publishing is done via the web UI. Go to https://contextium.io/marketplace and click 'Publish' to share your skill, agent, or MCP server."
58
+ </step>
59
+
60
+ <step name="my_installs">
61
+ If My installs selected:
62
+
63
+ The CLI does not have a list-installed command. List the workspace's skills and agents instead:
64
+
65
+ ```bash
66
+ contextium skills list -w <workspace>
67
+ contextium agents list -w <workspace>
68
+ ```
69
+
70
+ Show what's available and offer to install more from the marketplace.
71
+ </step>
72
+
73
+ </process>
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: ium:new-project
3
+ description: Set up a new Contextium project — authenticate, pick a workspace, create libraries, agents, skills, and a workflow
4
+ allowed-tools:
5
+ - Bash
6
+ ---
7
+
8
+ <objective>
9
+ Guide the user through setting up a brand new Contextium project from scratch. This is the first-time onboarding flow — authentication, workspace selection, project structure, and workflow creation.
10
+ </objective>
11
+
12
+ <process>
13
+ Run the following command and let the wizard guide the user interactively:
14
+
15
+ ```bash
16
+ contextium setup
17
+ ```
18
+
19
+ If the user wants to reconfigure from scratch, run:
20
+
21
+ ```bash
22
+ contextium setup --force
23
+ ```
24
+
25
+ Do not interrupt or wrap the wizard output — let it run fully interactively.
26
+ </process>
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: ium:new
3
+ description: Create a new file in a Contextium context library with guided prompts — always includes full content
4
+ allowed-tools:
5
+ - Bash
6
+ ---
7
+
8
+ <objective>
9
+ Create a new file in a Contextium context library. Always include the full content of the file — never create empty files.
10
+ </objective>
11
+
12
+ <process>
13
+ Use the contextium new command with the required flags. Always provide -c with the full file content.
14
+
15
+ ```bash
16
+ contextium new <library-name> -t "<title>" -p "<path.md>" -c "<full content here>" -w <workspace>
17
+ ```
18
+
19
+ If the user has not specified a library, list available libraries first:
20
+ ```bash
21
+ contextium libraries -w <workspace>
22
+ ```
23
+
24
+ Rules:
25
+ - ALWAYS include -c with the complete file content — never omit it or leave it empty
26
+ - The content should be fully written, not a placeholder
27
+ - Use -f <filepath> if the content already exists as a local file
28
+ - If no workspace is set in .contextiumrc, ask the user which workspace to use
29
+ </process>
@@ -0,0 +1,31 @@
1
+ ---
2
+ name: ium:search
3
+ description: Search across Contextium workspace documentation and surface matching files
4
+ allowed-tools:
5
+ - Bash
6
+ ---
7
+
8
+ <objective>
9
+ Search across Contextium documentation and return matching files with their content.
10
+ </objective>
11
+
12
+ <process>
13
+ Run a search across the workspace:
14
+
15
+ ```bash
16
+ contextium search "<query>" -w <workspace>
17
+ ```
18
+
19
+ If the user wants to search by tag:
20
+ ```bash
21
+ contextium cat --tag <tag> -w <workspace>
22
+ ```
23
+
24
+ To find a file by name:
25
+ ```bash
26
+ contextium find "<filename>" -w <workspace>
27
+ ```
28
+
29
+ If no workspace is specified, use the default from .contextiumrc or ask the user.
30
+ After surfacing results, offer to output the full content of any matching file using `contextium cat`.
31
+ </process>
@@ -0,0 +1,62 @@
1
+ ---
2
+ name: ium:status
3
+ description: Health dashboard — show auth status, current workspace, cache state, and available resources
4
+ allowed-tools:
5
+ - Bash
6
+ ---
7
+
8
+ <objective>
9
+ Show a health dashboard for the current Contextium setup — who is logged in, which workspace is active, what's cached, and what resources are available.
10
+ </objective>
11
+
12
+ <process>
13
+ Run the following checks and display results in a structured summary:
14
+
15
+ ```bash
16
+ # Auth status
17
+ contextium whoami
18
+
19
+ # Current workspace config — extract workspace slug if set
20
+ cat .contextiumrc 2>/dev/null || echo "No .contextiumrc found in current directory"
21
+ ```
22
+
23
+ Parse the workspace slug from `.contextiumrc` if present. Then run workspace-scoped checks:
24
+
25
+ ```bash
26
+ # Available workspaces
27
+ contextium workspaces
28
+
29
+ # If a workspace slug is known, check status and resources for it:
30
+ contextium status -w <workspace>
31
+ contextium libraries -w <workspace>
32
+ contextium agents list -w <workspace>
33
+ contextium skills list -w <workspace>
34
+ ```
35
+
36
+ If no workspace slug is available from `.contextiumrc`, skip the workspace-scoped commands and note that no default workspace is configured.
37
+
38
+ Format output as:
39
+
40
+ ```
41
+ ## Contextium Status
42
+
43
+ AUTH
44
+ User: <name / not logged in>
45
+
46
+ WORKSPACE
47
+ Active: <workspace name or "not configured">
48
+ Config: <.contextiumrc found / not found>
49
+
50
+ AVAILABLE WORKSPACES
51
+ - <workspace 1> (<n> libraries)
52
+ - <workspace 2> (<n> libraries)
53
+
54
+ RESOURCES (workspace: <name>)
55
+ Libraries: <count>
56
+ Agents: <count>
57
+ Skills: <count>
58
+ ```
59
+
60
+ If not logged in, suggest: "Run `contextium login` or `/ium:new-project` to get started."
61
+ If no workspace configured, suggest: "Run `contextium init -w <slug>` to set a default workspace, or use `/ium:new-project` for first-time setup."
62
+ </process>
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: ium:sync
3
+ description: Refresh the local Contextium cache from the current workspace
4
+ allowed-tools:
5
+ - Bash
6
+ ---
7
+
8
+ <objective>
9
+ Sync the current Contextium workspace into local cache so Claude has access to the latest files.
10
+ </objective>
11
+
12
+ <process>
13
+ Sync all files from the current workspace:
14
+
15
+ ```bash
16
+ contextium sync -w <workspace>
17
+ ```
18
+
19
+ To preview what will be synced without downloading:
20
+ ```bash
21
+ contextium sync --dry-run -w <workspace>
22
+ ```
23
+
24
+ To force re-download everything (ignore cache):
25
+ ```bash
26
+ contextium sync --force -w <workspace>
27
+ ```
28
+
29
+ After syncing, run status to confirm:
30
+ ```bash
31
+ contextium status -w <workspace>
32
+ ```
33
+
34
+ If no workspace is configured in `.contextiumrc`, check first:
35
+ ```bash
36
+ cat .contextiumrc 2>/dev/null | grep workspace || echo "No workspace configured — run /ium:new-project to set one up"
37
+ ```
38
+ </process>
@@ -0,0 +1,89 @@
1
+ ---
2
+ name: ium:update
3
+ description: Update Contextium CLI and MCP server to latest versions
4
+ allowed-tools:
5
+ - Bash
6
+ - AskUserQuestion
7
+ ---
8
+
9
+ <objective>
10
+ Check for Contextium CLI and MCP server updates, show what's new, and update globally if the user confirms.
11
+ </objective>
12
+
13
+ <process>
14
+
15
+ <step name="check_versions">
16
+ Check installed and latest versions for both packages:
17
+
18
+ ```bash
19
+ CLI_INSTALLED=$(npm list -g @contextium/cli --depth=0 --json 2>/dev/null | node -e "const d=require('fs').readFileSync('/dev/stdin','utf8'); try{const j=JSON.parse(d); process.stdout.write(j?.dependencies?.['@contextium/cli']?.version||'not installed')}catch(e){process.stdout.write('not installed')}")
20
+ MCP_INSTALLED=$(npm list -g @contextium/mcp-server --depth=0 --json 2>/dev/null | node -e "const d=require('fs').readFileSync('/dev/stdin','utf8'); try{const j=JSON.parse(d); process.stdout.write(j?.dependencies?.['@contextium/mcp-server']?.version||'not installed')}catch(e){process.stdout.write('not installed')}")
21
+ CLI_LATEST=$(npm view @contextium/cli version 2>/dev/null || echo "unknown")
22
+ MCP_LATEST=$(npm view @contextium/mcp-server version 2>/dev/null || echo "unknown")
23
+ echo "CLI installed: $CLI_INSTALLED | latest: $CLI_LATEST"
24
+ echo "MCP installed: $MCP_INSTALLED | latest: $MCP_LATEST"
25
+ ```
26
+
27
+ Display results in this format:
28
+
29
+ ```
30
+ ## Contextium Update Check
31
+
32
+ | Package | Installed | Latest | Status |
33
+ |-----------------------|-----------|--------|--------------|
34
+ | @contextium/cli | x.y.z | x.y.z | ✅ Up to date |
35
+ | @contextium/mcp-server| x.y.z | x.y.z | ⬆ Update available |
36
+ ```
37
+
38
+ If both are up to date, inform the user and exit.
39
+ </step>
40
+
41
+ <step name="confirm">
42
+ If any updates are available, ask the user to confirm:
43
+
44
+ Use AskUserQuestion:
45
+ - Question: "Update available packages now?"
46
+ - Options:
47
+ - "Yes, update now"
48
+ - "No, cancel"
49
+
50
+ If cancelled, exit.
51
+ </step>
52
+
53
+ <step name="run_updates">
54
+ Update each package that has a newer version available:
55
+
56
+ ```bash
57
+ # Update CLI if needed
58
+ npm install -g @contextium/cli@latest
59
+
60
+ # Update MCP if needed
61
+ npm install -g @contextium/mcp-server@latest
62
+ ```
63
+
64
+ Show output for each.
65
+
66
+ After updating, clear the ium update cache so the statusline indicator disappears:
67
+
68
+ ```bash
69
+ CLAUDE_CACHE="${CLAUDE_CONFIG_DIR:-$HOME/.claude}/cache"
70
+ rm -f "$CLAUDE_CACHE/ium-update-check.json"
71
+ ```
72
+ </step>
73
+
74
+ <step name="display_result">
75
+ Show completion summary:
76
+
77
+ ```
78
+ ╔══════════════════════════════════════════════════╗
79
+ ║ Contextium Updated ║
80
+ ╚══════════════════════════════════════════════════╝
81
+
82
+ @contextium/cli x.y.z → x.y.z ✅
83
+ @contextium/mcp-server x.y.z → x.y.z ✅
84
+
85
+ Restart Claude Code to pick up the latest MCP server.
86
+ ```
87
+ </step>
88
+
89
+ </process>
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: ium:workflow
3
+ description: Load a Contextium workflow and sync its resources into context — bundles agents, skills, and libraries for a project
4
+ allowed-tools:
5
+ - Bash
6
+ ---
7
+
8
+ <objective>
9
+ Load a Contextium workflow and bring its resources into the current context. Workflows bundle agents, skills, and context libraries together for a specific project.
10
+ </objective>
11
+
12
+ <process>
13
+ 1. List available workflows so the user can pick one:
14
+ ```bash
15
+ contextium workflows list -w <workspace>
16
+ ```
17
+
18
+ 2. Load the chosen workflow and sync its files:
19
+ ```bash
20
+ contextium workflow "<workflow-name>" -w <workspace> --sync
21
+ ```
22
+
23
+ 3. Output the synced content to context:
24
+ ```bash
25
+ contextium cat --all -w <workspace>
26
+ ```
27
+
28
+ If the user specifies a workflow name directly in their message, skip step 1 and load it immediately.
29
+ If no workspace is specified, use the default from .contextiumrc or ask the user.
30
+ </process>
@@ -0,0 +1,134 @@
1
+ ---
2
+ name: ium:workspace
3
+ description: Switch Contextium workspace — saves a handoff note to the current workspace, switches, checks for a handoff note in the new workspace, and syncs
4
+ allowed-tools:
5
+ - Bash
6
+ - AskUserQuestion
7
+ ---
8
+
9
+ <objective>
10
+ Switch the active Contextium workspace with full context handoff — save what's in progress before leaving, restore context on arrival.
11
+ </objective>
12
+
13
+ <process>
14
+
15
+ <step name="show_current">
16
+ Show the current workspace and list available workspaces:
17
+
18
+ ```bash
19
+ # Show current workspace from .contextiumrc
20
+ cat .contextiumrc 2>/dev/null | grep -E "workspace" | head -5 || echo "No .contextiumrc found"
21
+
22
+ # List all available workspaces
23
+ contextium workspaces
24
+ ```
25
+
26
+ Display clearly:
27
+ ```
28
+ Current workspace: <name>
29
+
30
+ Available workspaces:
31
+ 1. workspace-a
32
+ 2. workspace-b
33
+ 3. workspace-c
34
+ ```
35
+
36
+ Ask the user which workspace to switch to using AskUserQuestion with the workspace names as options. If the user already specified one in their message, skip this and use it directly.
37
+ </step>
38
+
39
+ <step name="save_handoff">
40
+ Before switching, offer to save a handoff note to the current workspace.
41
+
42
+ Ask using AskUserQuestion:
43
+ - Question: "Save a handoff note to the current workspace before switching?"
44
+ - Options:
45
+ - "Yes, save handoff note"
46
+ - "No, switch without saving"
47
+
48
+ If yes, ask the user: "What should the handoff note say? (What were you working on, what's the status, what to pick up next?)"
49
+
50
+ If the user provides content, save it:
51
+
52
+ ```bash
53
+ TIMESTAMP=$(date '+%Y-%m-%d %H:%M')
54
+ contextium new handoff-notes \
55
+ -t "Session Handoff $TIMESTAMP" \
56
+ -p session-handoff.md \
57
+ -c "<handoff content from user>" \
58
+ -w <current-workspace>
59
+ ```
60
+
61
+ Confirm it was saved. If the `handoff-notes` library doesn't exist, create it first:
62
+
63
+ ```bash
64
+ contextium create-library -w <current-workspace> -n "Handoff Notes" -d "Session handoff notes for workspace context continuity"
65
+ ```
66
+
67
+ Then retry the save.
68
+ </step>
69
+
70
+ <step name="switch_workspace">
71
+ Switch to the new workspace:
72
+
73
+ ```bash
74
+ contextium init -w <new-workspace-slug>
75
+ ```
76
+
77
+ Confirm the switch succeeded.
78
+ </step>
79
+
80
+ <step name="check_handoff">
81
+ Check if a handoff note exists in the new workspace from a previous session:
82
+
83
+ ```bash
84
+ contextium find "session-handoff" -w <new-workspace>
85
+ ```
86
+
87
+ If a handoff file is found:
88
+ 1. Fetch and read it:
89
+ ```bash
90
+ contextium cat <fileId> -w <new-workspace>
91
+ ```
92
+ 2. Brief the user on what was previously in progress, in this format:
93
+
94
+ ```
95
+ ## Handoff Note Found
96
+
97
+ A previous session left a handoff note for this workspace:
98
+
99
+ ---
100
+ <handoff content>
101
+ ---
102
+
103
+ Picking up from where you left off.
104
+ ```
105
+
106
+ If no handoff note found, say: "No handoff note found for this workspace — starting fresh."
107
+ </step>
108
+
109
+ <step name="sync">
110
+ Sync the new workspace into local cache:
111
+
112
+ ```bash
113
+ contextium sync -w <new-workspace>
114
+ ```
115
+
116
+ After syncing, ask using AskUserQuestion:
117
+ - Question: "Load a workflow to get started?"
118
+ - Options:
119
+ - "Yes, show me available workflows"
120
+ - "No, I'm good"
121
+
122
+ If yes, list workflows:
123
+ ```bash
124
+ contextium workflows list -w <new-workspace>
125
+ ```
126
+
127
+ Then load the one the user picks:
128
+ ```bash
129
+ contextium workflow "<name>" -w <new-workspace> --sync
130
+ contextium cat --all -w <new-workspace>
131
+ ```
132
+ </step>
133
+
134
+ </process>