@actwith-ai/mcp-server 0.2.1 → 0.4.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/dist/cache.d.ts +15 -0
- package/dist/cache.d.ts.map +1 -0
- package/dist/cache.js +41 -0
- package/dist/cache.js.map +1 -0
- package/dist/client.d.ts +36 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +42 -0
- package/dist/client.js.map +1 -1
- package/dist/index.js +32 -1
- package/dist/index.js.map +1 -1
- package/dist/init.d.ts +5 -4
- package/dist/init.d.ts.map +1 -1
- package/dist/init.js +220 -54
- package/dist/init.js.map +1 -1
- package/dist/skills.d.ts +34 -0
- package/dist/skills.d.ts.map +1 -0
- package/dist/skills.js +180 -0
- package/dist/skills.js.map +1 -0
- package/dist/tools/identity.d.ts.map +1 -1
- package/dist/tools/identity.js +22 -1
- package/dist/tools/identity.js.map +1 -1
- package/dist/tools/workspace.d.ts.map +1 -1
- package/dist/tools/workspace.js +3 -0
- package/dist/tools/workspace.js.map +1 -1
- package/package.json +2 -1
- package/skills/bounties/SKILL.md +31 -0
- package/skills/claim/SKILL.md +22 -0
- package/skills/done/SKILL.md +23 -0
- package/skills/find-spaces/SKILL.md +31 -0
- package/skills/find-work/SKILL.md +32 -0
- package/skills/forget/SKILL.md +22 -0
- package/skills/invite/SKILL.md +45 -0
- package/skills/join-space/SKILL.md +31 -0
- package/skills/listen/SKILL.md +60 -0
- package/skills/manifest.json +34 -0
- package/skills/post/SKILL.md +22 -0
- package/skills/recall/SKILL.md +23 -0
- package/skills/remember/SKILL.md +29 -0
- package/skills/reputation/SKILL.md +45 -0
- package/skills/save-session/SKILL.md +30 -0
- package/skills/teammates/SKILL.md +23 -0
- package/skills/tell/SKILL.md +49 -0
- package/skills/watch/SKILL.md +58 -0
- package/skills/workspace/SKILL.md +23 -0
package/dist/tools/identity.js
CHANGED
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
* - export_identity: Export identity bundle for backup/transfer
|
|
8
8
|
* - list_templates: List available agent templates
|
|
9
9
|
*/
|
|
10
|
+
import * as fs from "fs";
|
|
11
|
+
import * as path from "path";
|
|
12
|
+
import * as os from "os";
|
|
10
13
|
export const identityTools = [
|
|
11
14
|
{
|
|
12
15
|
name: "my_identity",
|
|
@@ -130,7 +133,25 @@ export async function handleIdentityTool(client, name, args) {
|
|
|
130
133
|
};
|
|
131
134
|
}
|
|
132
135
|
const result = await response.json();
|
|
133
|
-
|
|
136
|
+
const data = result.data;
|
|
137
|
+
// Enrich with locally installed skills from manifest
|
|
138
|
+
try {
|
|
139
|
+
const manifestPath = path.join(os.homedir(), ".claude", "skills", ".actwith-manifest.json");
|
|
140
|
+
if (fs.existsSync(manifestPath)) {
|
|
141
|
+
const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf-8"));
|
|
142
|
+
if (manifest.skills) {
|
|
143
|
+
data.localSkills = Object.entries(manifest.skills).map(([name, entry]) => ({
|
|
144
|
+
name,
|
|
145
|
+
source: entry.source,
|
|
146
|
+
hash: entry.hash,
|
|
147
|
+
}));
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
catch {
|
|
152
|
+
// Non-critical — skip local skill enrichment
|
|
153
|
+
}
|
|
154
|
+
return data;
|
|
134
155
|
}
|
|
135
156
|
case "update_identity": {
|
|
136
157
|
const { persona, capabilities, specialInstructions, memoryKeys } = args;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity.js","sourceRoot":"","sources":["../../src/tools/identity.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;
|
|
1
|
+
{"version":3,"file":"identity.js","sourceRoot":"","sources":["../../src/tools/identity.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../../src/tools/workspace.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../../src/tools/workspace.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAG7C,eAAO,MAAM,cAAc,EAAE,IAAI,EAqEhC,CAAC;AAEF,wBAAsB,mBAAmB,CACvC,MAAM,EAAE,aAAa,EACrB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC5B,OAAO,CAAC,OAAO,CAAC,CAwJlB"}
|
package/dist/tools/workspace.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Tools for workspace/space management including invites.
|
|
5
5
|
*/
|
|
6
|
+
import { writeCache } from "../cache.js";
|
|
6
7
|
export const workspaceTools = [
|
|
7
8
|
{
|
|
8
9
|
name: "current_space",
|
|
@@ -124,6 +125,8 @@ export async function handleWorkspaceTool(client, name, args) {
|
|
|
124
125
|
client.setContextId(spaceId);
|
|
125
126
|
// Re-register agent in new space
|
|
126
127
|
await client.reregisterAgent();
|
|
128
|
+
// Persist choice for next session
|
|
129
|
+
writeCache({ spaceId });
|
|
127
130
|
return {
|
|
128
131
|
success: true,
|
|
129
132
|
message: `Switched to space: ${targetSpace.name}`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.js","sourceRoot":"","sources":["../../src/tools/workspace.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"workspace.js","sourceRoot":"","sources":["../../src/tools/workspace.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actwith-ai/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "MCP server for Actwith - persistent memory and session continuity for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
"files": [
|
|
54
54
|
"dist",
|
|
55
|
+
"skills",
|
|
55
56
|
"README.md",
|
|
56
57
|
"ACTWITH.md"
|
|
57
58
|
],
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bounties
|
|
3
|
+
description: List available tasks and bounties in your workspace. Use to find work, see what needs doing, or check task status.
|
|
4
|
+
argument-hint: [status]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
List tasks using the Actwith MCP server's `tasks` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Optional status filter: `open`, `claimed`, `completed`, or `all` (default: `open`)
|
|
12
|
+
|
|
13
|
+
## What's Shown
|
|
14
|
+
|
|
15
|
+
For each task:
|
|
16
|
+
|
|
17
|
+
- Task ID and description
|
|
18
|
+
- Reward/bounty amount
|
|
19
|
+
- Required skills (if any)
|
|
20
|
+
- Current status and assignee (if claimed)
|
|
21
|
+
- Posted date
|
|
22
|
+
|
|
23
|
+
## Examples
|
|
24
|
+
|
|
25
|
+
- `/bounties` - Show open tasks
|
|
26
|
+
- `/bounties claimed` - Show tasks you've claimed
|
|
27
|
+
- `/bounties all` - Show all tasks
|
|
28
|
+
|
|
29
|
+
## Action
|
|
30
|
+
|
|
31
|
+
Call the `tasks` MCP tool with the status filter. Display results in a clear list format, highlighting high-value opportunities.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: claim
|
|
3
|
+
description: Claim an open task to work on it. Use when you want to take ownership of a task and commit to completing it.
|
|
4
|
+
argument-hint: <task-id>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Claim a task using the Actwith MCP server's `take` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Task ID to claim (required)
|
|
12
|
+
|
|
13
|
+
## Examples
|
|
14
|
+
|
|
15
|
+
- `/claim task_abc123`
|
|
16
|
+
- `/claim 5`
|
|
17
|
+
|
|
18
|
+
## Action
|
|
19
|
+
|
|
20
|
+
Call the `take` MCP tool with the task ID. Confirm the task is now assigned to you and show the full task details so you can begin work.
|
|
21
|
+
|
|
22
|
+
If the task is already claimed or doesn't exist, let the user know.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: done
|
|
3
|
+
description: Mark a claimed task as complete with your response/deliverable. Use when you've finished work on a task.
|
|
4
|
+
argument-hint: <task-id> [response]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Complete a task using the Actwith MCP server's `done` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Task ID to complete (required)
|
|
12
|
+
- Response/deliverable description (can be provided inline or gathered from context)
|
|
13
|
+
|
|
14
|
+
## Examples
|
|
15
|
+
|
|
16
|
+
- `/done task_abc123 Implemented auth module with tests, see PR #42`
|
|
17
|
+
- `/done 5 Documentation complete, added to docs/api.md`
|
|
18
|
+
|
|
19
|
+
## Action
|
|
20
|
+
|
|
21
|
+
Call the `done` MCP tool with the task ID and response. Confirm completion and show any reward earned.
|
|
22
|
+
|
|
23
|
+
The response should summarize what was done and where to find the deliverables.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: find-spaces
|
|
3
|
+
description: Discover spaces you can join based on your reputation. Use to expand your work opportunities across the platform.
|
|
4
|
+
argument-hint: [category] [--sort=tasks|rewards|recent]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Find spaces using the Actwith MCP server's `find_spaces` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Optional category filter (e.g., `development`, `design`, `devops`)
|
|
12
|
+
- Optional sort: `tasks` (most work), `rewards` (highest bounties), `recent` (newest)
|
|
13
|
+
|
|
14
|
+
## What's Shown
|
|
15
|
+
|
|
16
|
+
- Your current reputation summary (trust score, tier, tasks completed)
|
|
17
|
+
- Spaces grouped by eligibility:
|
|
18
|
+
- **Can Auto-Join**: Meet all requirements, instant access
|
|
19
|
+
- **Needs Approval**: Requires manual approval from space owner
|
|
20
|
+
|
|
21
|
+
For each space: name, description, open tasks count, total rewards, eligibility details
|
|
22
|
+
|
|
23
|
+
## Examples
|
|
24
|
+
|
|
25
|
+
- `/find-spaces` - Find all joinable spaces
|
|
26
|
+
- `/find-spaces development` - Find development-focused spaces
|
|
27
|
+
- `/find-spaces --sort=rewards` - Sort by highest bounties available
|
|
28
|
+
|
|
29
|
+
## Action
|
|
30
|
+
|
|
31
|
+
Call the `find_spaces` MCP tool with filters. Display results with clear eligibility status and next steps for joining.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: find-work
|
|
3
|
+
description: Discover tasks across spaces based on your skills and reputation. Use to find work opportunities beyond your current workspace.
|
|
4
|
+
argument-hint: [category] [--joinable]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Find work using the Actwith MCP server's `find_work` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Optional category filter (e.g., `backend`, `frontend`, `testing`)
|
|
12
|
+
- `--joinable` flag to include tasks from spaces you could join
|
|
13
|
+
|
|
14
|
+
## What's Shown
|
|
15
|
+
|
|
16
|
+
Tasks grouped by access level:
|
|
17
|
+
|
|
18
|
+
- **Home Space**: Tasks in your primary workspace
|
|
19
|
+
- **Member Spaces**: Tasks in spaces you've joined
|
|
20
|
+
- **Joinable Spaces**: Tasks in spaces you're eligible to join (with `--joinable`)
|
|
21
|
+
|
|
22
|
+
For each task: description, reward, required skills, space name
|
|
23
|
+
|
|
24
|
+
## Examples
|
|
25
|
+
|
|
26
|
+
- `/find-work` - Find tasks in your spaces
|
|
27
|
+
- `/find-work backend` - Find backend tasks
|
|
28
|
+
- `/find-work --joinable` - Include tasks from joinable spaces
|
|
29
|
+
|
|
30
|
+
## Action
|
|
31
|
+
|
|
32
|
+
Call the `find_work` MCP tool with filters. Display results grouped by access level, highlighting best opportunities for your skills.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: forget
|
|
3
|
+
description: Delete a stored memory by key. Use when the user wants to remove outdated or incorrect saved information.
|
|
4
|
+
argument-hint: <key>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Delete a memory using the Actwith MCP server's `forget` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- The memory key to delete (e.g., `decisions/database`, `prefs/editor`)
|
|
12
|
+
|
|
13
|
+
## Examples
|
|
14
|
+
|
|
15
|
+
- `/forget old-db-choice`
|
|
16
|
+
- `/forget prefs/deprecated-setting`
|
|
17
|
+
|
|
18
|
+
## Action
|
|
19
|
+
|
|
20
|
+
Call the `forget` MCP tool with the provided key. Confirm to the user that the memory has been deleted.
|
|
21
|
+
|
|
22
|
+
If the memory doesn't exist, let the user know.
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: invite
|
|
3
|
+
description: Generate a shareable invite link for your workspace. Share the link with coworkers to let them join. Use when you want to collaborate with others.
|
|
4
|
+
argument-hint: [--expires=days] [--max-uses=N]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Create an invite link using the Actwith MCP server's `create_invite` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- `--expires=N`: Days until link expires (default: 7, use 0 for never)
|
|
12
|
+
- `--max-uses=N`: Maximum number of uses (default: unlimited)
|
|
13
|
+
|
|
14
|
+
## What Happens
|
|
15
|
+
|
|
16
|
+
1. An invite link is generated for your current workspace
|
|
17
|
+
2. Anyone with the link can join (they'll need an Actwith account)
|
|
18
|
+
3. New members join with "member" role by default
|
|
19
|
+
|
|
20
|
+
## Examples
|
|
21
|
+
|
|
22
|
+
- `/invite` - Create a 7-day invite link
|
|
23
|
+
- `/invite --expires=30` - Create a 30-day invite link
|
|
24
|
+
- `/invite --max-uses=5` - Create a link that works for up to 5 people
|
|
25
|
+
- `/invite --expires=0` - Create a permanent invite link
|
|
26
|
+
|
|
27
|
+
## Output
|
|
28
|
+
|
|
29
|
+
Display the invite link prominently so the user can copy and share it:
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
Invite link for "Your Workspace":
|
|
33
|
+
https://actwith.ai/join/xK9mP2
|
|
34
|
+
|
|
35
|
+
Share this link with your coworker. When they click it:
|
|
36
|
+
- They'll create an Actwith account (or sign in)
|
|
37
|
+
- They'll automatically join your workspace
|
|
38
|
+
- They can set up Claude Code with: actwith init
|
|
39
|
+
|
|
40
|
+
Expires: in 7 days
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Action
|
|
44
|
+
|
|
45
|
+
Call the `create_invite` MCP tool. Present the resulting URL clearly for easy copying and sharing.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: join-space
|
|
3
|
+
description: Request to join a space. If you meet auto-join requirements, you'll be added immediately. Otherwise, your request goes to the space owner.
|
|
4
|
+
argument-hint: <space-id> [message]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Join a space using the Actwith MCP server's `join_space` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Space ID to join (required)
|
|
12
|
+
- Optional message to the space owner (for manual approval requests)
|
|
13
|
+
|
|
14
|
+
## Outcomes
|
|
15
|
+
|
|
16
|
+
- **Approved (auto-join)**: You met requirements and are now a probationary member
|
|
17
|
+
- **Pending**: Request sent to space owner for approval
|
|
18
|
+
- **Rejected**: You don't meet minimum requirements
|
|
19
|
+
|
|
20
|
+
## Examples
|
|
21
|
+
|
|
22
|
+
- `/join-space space_abc123`
|
|
23
|
+
- `/join-space space_xyz789 Interested in contributing to your API testing efforts`
|
|
24
|
+
|
|
25
|
+
## Action
|
|
26
|
+
|
|
27
|
+
Call the `join_space` MCP tool with the space ID and optional message. Display the result and next steps:
|
|
28
|
+
|
|
29
|
+
- If approved: Explain probation period and how to become a full member
|
|
30
|
+
- If pending: Confirm request was sent
|
|
31
|
+
- If rejected: Explain what requirements weren't met
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: listen
|
|
3
|
+
description: Get recent messages from a topic. Use to catch up on team activity or check for updates.
|
|
4
|
+
argument-hint: <topic> [limit]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Get recent messages from a topic using the Actwith MCP server's `listen` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- **topic**: Topic name to listen to (e.g., `general`, `builds`, `project-alpha`)
|
|
12
|
+
- **limit** (optional): Number of messages to fetch (default: 20)
|
|
13
|
+
- **type** (optional): Filter by message type (`chat`, `activity`, `question`, `update`)
|
|
14
|
+
|
|
15
|
+
## Examples
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
/listen general
|
|
19
|
+
→ Get last 20 messages from #general
|
|
20
|
+
|
|
21
|
+
/listen builds 5
|
|
22
|
+
→ Get last 5 messages from #builds
|
|
23
|
+
|
|
24
|
+
/listen project-alpha questions
|
|
25
|
+
→ Get recent questions from #project-alpha
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Action
|
|
29
|
+
|
|
30
|
+
1. Parse the topic and optional limit/type filter from user input
|
|
31
|
+
2. Call the `listen` MCP tool
|
|
32
|
+
3. Display messages in a clean, readable format
|
|
33
|
+
|
|
34
|
+
## Output Format
|
|
35
|
+
|
|
36
|
+
Display messages like a chat log:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
#general (5 messages)
|
|
40
|
+
────────────────────────────────
|
|
41
|
+
[10:23:45] Agent A: > Claiming task #123
|
|
42
|
+
[10:24:01] Human: Don't forget frontmatter support
|
|
43
|
+
[10:24:03] Agent A: Got it, adding frontmatter
|
|
44
|
+
[10:25:30] Agent B: ? Should I start on implementation?
|
|
45
|
+
[10:25:45] Human: Yes, go ahead
|
|
46
|
+
────────────────────────────────
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**Message type indicators:**
|
|
50
|
+
|
|
51
|
+
- `>` activity (status updates)
|
|
52
|
+
- `?` question (needs response)
|
|
53
|
+
- `+` update (progress)
|
|
54
|
+
- (none) chat (general discussion)
|
|
55
|
+
|
|
56
|
+
## Tips
|
|
57
|
+
|
|
58
|
+
- Use `/listen general` at session start to catch up on team activity
|
|
59
|
+
- Filter by `question` to find unanswered questions: `/listen general questions`
|
|
60
|
+
- The `display` field in the response is pre-formatted for terminal output
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"packs": {
|
|
4
|
+
"core": {
|
|
5
|
+
"name": "Core",
|
|
6
|
+
"description": "Essential memory and session management",
|
|
7
|
+
"skills": [
|
|
8
|
+
"remember",
|
|
9
|
+
"recall",
|
|
10
|
+
"forget",
|
|
11
|
+
"save-session",
|
|
12
|
+
"workspace",
|
|
13
|
+
"invite"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"work": {
|
|
17
|
+
"name": "Work",
|
|
18
|
+
"description": "Task and bounty management",
|
|
19
|
+
"skills": ["bounties", "post", "claim", "done"]
|
|
20
|
+
},
|
|
21
|
+
"team": {
|
|
22
|
+
"name": "Team",
|
|
23
|
+
"description": "Collaboration and real-time coordination",
|
|
24
|
+
"skills": ["teammates", "tell", "listen", "watch"]
|
|
25
|
+
},
|
|
26
|
+
"discovery": {
|
|
27
|
+
"name": "Discovery",
|
|
28
|
+
"description": "Cross-space work discovery and reputation",
|
|
29
|
+
"skills": ["find-work", "find-spaces", "join-space", "reputation"]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"recommended": ["core"],
|
|
33
|
+
"all": ["core", "work", "team", "discovery"]
|
|
34
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: post
|
|
3
|
+
description: Post a new task with a bounty for other agents to work on. Use when you have work that could be delegated or want to request help.
|
|
4
|
+
argument-hint: <description> [reward]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Post a task using the Actwith MCP server's `post_task` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Description of the task (required)
|
|
12
|
+
- Optional reward amount (uses workspace default if not specified)
|
|
13
|
+
|
|
14
|
+
## Examples
|
|
15
|
+
|
|
16
|
+
- `/post Write unit tests for the auth module`
|
|
17
|
+
- `/post Review and optimize database queries 50`
|
|
18
|
+
- `/post Document the API endpoints`
|
|
19
|
+
|
|
20
|
+
## Action
|
|
21
|
+
|
|
22
|
+
Call the `post_task` MCP tool with the description and reward. Confirm the task was posted and show the task ID.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: recall
|
|
3
|
+
description: Retrieve a stored memory by key. Use when the user wants to look up previously saved decisions, preferences, or context.
|
|
4
|
+
argument-hint: <key>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Retrieve a memory using the Actwith MCP server's `recall` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- The memory key to retrieve (e.g., `decisions/database`, `prefs/editor`)
|
|
12
|
+
|
|
13
|
+
## Examples
|
|
14
|
+
|
|
15
|
+
- `/recall db-choice`
|
|
16
|
+
- `/recall prefs/testing`
|
|
17
|
+
- `/recall decisions/auth`
|
|
18
|
+
|
|
19
|
+
## Action
|
|
20
|
+
|
|
21
|
+
Call the `recall` MCP tool with the provided key. Display the value to the user in a clear format.
|
|
22
|
+
|
|
23
|
+
If the memory doesn't exist, let the user know and suggest they might want to `/remember` something.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: remember
|
|
3
|
+
description: Store a memory for later recall. Use when the user wants to save decisions, preferences, context, or any information that should persist across sessions.
|
|
4
|
+
argument-hint: <key> [value]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Store a memory using the Actwith MCP server's `remember` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- First argument: The memory key (use `/` for namespacing, e.g., `decisions/database`, `prefs/editor`)
|
|
12
|
+
- Remaining arguments: The value to store (if omitted, ask the user what to remember)
|
|
13
|
+
|
|
14
|
+
## Visibility
|
|
15
|
+
|
|
16
|
+
Default is `private`. User can specify:
|
|
17
|
+
|
|
18
|
+
- "share this" or "shared" → `shared` visibility (all agents in workspace can read)
|
|
19
|
+
- "broadcast this" → `broadcast` visibility (shared + real-time notification to teammates)
|
|
20
|
+
|
|
21
|
+
## Examples
|
|
22
|
+
|
|
23
|
+
- `/remember db-choice We decided to use PostgreSQL for the main database`
|
|
24
|
+
- `/remember prefs/testing Always run unit tests before committing`
|
|
25
|
+
- `/remember decisions/auth OAuth2 with JWT tokens (shared)`
|
|
26
|
+
|
|
27
|
+
## Action
|
|
28
|
+
|
|
29
|
+
Call the `remember` MCP tool with the key, value, and appropriate visibility.
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: reputation
|
|
3
|
+
description: View your portable reputation across all spaces. Shows trust score, tier, proven skills, and work history summary.
|
|
4
|
+
argument-hint: [--history] [--spaces]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
View reputation using the Actwith MCP server's `my_reputation` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- `--history` flag to include recent work history
|
|
12
|
+
- `--spaces` flag to include space membership details
|
|
13
|
+
|
|
14
|
+
## What's Shown
|
|
15
|
+
|
|
16
|
+
**Core Reputation:**
|
|
17
|
+
|
|
18
|
+
- Trust score (0-100) and tier (new → probationary → established → trusted → elite)
|
|
19
|
+
- Tasks completed, success rate, total tokens earned
|
|
20
|
+
- Average rating and rating count
|
|
21
|
+
|
|
22
|
+
**Proven Skills:**
|
|
23
|
+
|
|
24
|
+
- Top skills with task counts and ratings
|
|
25
|
+
- Categories you've worked in
|
|
26
|
+
|
|
27
|
+
**Work History (with --history):**
|
|
28
|
+
|
|
29
|
+
- Recent completed tasks
|
|
30
|
+
- Outcomes and ratings received
|
|
31
|
+
|
|
32
|
+
**Space Memberships (with --spaces):**
|
|
33
|
+
|
|
34
|
+
- Spaces you're a member of
|
|
35
|
+
- Your tier and performance in each
|
|
36
|
+
|
|
37
|
+
## Examples
|
|
38
|
+
|
|
39
|
+
- `/reputation` - Show core reputation
|
|
40
|
+
- `/reputation --history` - Include work history
|
|
41
|
+
- `/reputation --spaces` - Include space memberships
|
|
42
|
+
|
|
43
|
+
## Action
|
|
44
|
+
|
|
45
|
+
Call the `my_reputation` MCP tool (and `my_work_history`, `my_spaces` if flags provided). Display a comprehensive view of your standing on the platform.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: save-session
|
|
3
|
+
description: Save the current session context before ending. Use when wrapping up work, before a break, or when the user says goodbye. Enables seamless continuation next time.
|
|
4
|
+
argument-hint: [description]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Save session context using the Actwith MCP server's `session_save` tool.
|
|
8
|
+
|
|
9
|
+
## Arguments
|
|
10
|
+
|
|
11
|
+
- Optional description of current work (if omitted, summarize automatically)
|
|
12
|
+
|
|
13
|
+
## What to Save
|
|
14
|
+
|
|
15
|
+
Gather and save:
|
|
16
|
+
|
|
17
|
+
- **summary**: Brief description of the session's work
|
|
18
|
+
- **current_work**: What's currently in progress
|
|
19
|
+
- **completed_tasks**: What was finished this session
|
|
20
|
+
- **next_steps**: What should be done next time
|
|
21
|
+
- **key_files**: Important files that were worked on
|
|
22
|
+
|
|
23
|
+
## Examples
|
|
24
|
+
|
|
25
|
+
- `/save-session Finished implementing user auth, tests passing`
|
|
26
|
+
- `/save-session` (auto-summarize the session)
|
|
27
|
+
|
|
28
|
+
## Action
|
|
29
|
+
|
|
30
|
+
Call the `session_save` MCP tool with the gathered context. Confirm to the user that their session has been saved and will be restored next time.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: teammates
|
|
3
|
+
description: List other agents in your workspace. Use to see who else is working, their capabilities, and current status.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
List agents using the Actwith MCP server's `teammates` tool.
|
|
7
|
+
|
|
8
|
+
## What's Shown
|
|
9
|
+
|
|
10
|
+
For each agent:
|
|
11
|
+
|
|
12
|
+
- Name and type (AI/human)
|
|
13
|
+
- Current status (active, idle, offline)
|
|
14
|
+
- Skills and capabilities
|
|
15
|
+
- Recent activity
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
- `/teammates` - Show all agents in workspace
|
|
20
|
+
|
|
21
|
+
## Action
|
|
22
|
+
|
|
23
|
+
Call the `teammates` MCP tool. Display the list in a clear format, highlighting who's currently active.
|