assistme 0.2.7 → 0.2.8

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/index.js CHANGED
@@ -3930,6 +3930,8 @@ Available capabilities:
3930
3930
  - If the user approves, use skill_add to add it to their collection, then proceed with the task
3931
3931
  - If a skill's instructions could be improved based on your experience, use skill_improve
3932
3932
  - Use skill_search to find relevant skills when the task doesn't obviously match the listed skills
3933
+ - Skills use {{variable_name}} placeholders for user-specific data (repos, channels, boards, etc.)
3934
+ - Use skill_configure to set variable values after creating skills or when the user provides their data
3933
3935
 
3934
3936
  5. JOB AUTOMATION:
3935
3937
  - When the user describes their job/role/daily work, use skill_generate to decompose it into automatable skills
@@ -4063,6 +4065,7 @@ var TaskProcessor = class {
4063
4065
  "mcp__assistme-agent__skill_improve",
4064
4066
  "mcp__assistme-agent__skill_invoke",
4065
4067
  "mcp__assistme-agent__skill_search",
4068
+ "mcp__assistme-agent__skill_configure",
4066
4069
  "mcp__assistme-agent__skill_generate",
4067
4070
  "mcp__assistme-agent__skill_link_job",
4068
4071
  "mcp__assistme-agent__skill_browse",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assistme",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "AssistMe CLI Agent - AI-powered assistant that controls your real browser",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -65,6 +65,8 @@ Available capabilities:
65
65
  - If the user approves, use skill_add to add it to their collection, then proceed with the task
66
66
  - If a skill's instructions could be improved based on your experience, use skill_improve
67
67
  - Use skill_search to find relevant skills when the task doesn't obviously match the listed skills
68
+ - Skills use {{variable_name}} placeholders for user-specific data (repos, channels, boards, etc.)
69
+ - Use skill_configure to set variable values after creating skills or when the user provides their data
68
70
 
69
71
  5. JOB AUTOMATION:
70
72
  - When the user describes their job/role/daily work, use skill_generate to decompose it into automatable skills
@@ -232,6 +234,7 @@ export class TaskProcessor {
232
234
  "mcp__assistme-agent__skill_improve",
233
235
  "mcp__assistme-agent__skill_invoke",
234
236
  "mcp__assistme-agent__skill_search",
237
+ "mcp__assistme-agent__skill_configure",
235
238
  "mcp__assistme-agent__skill_generate",
236
239
  "mcp__assistme-agent__skill_link_job",
237
240
  "mcp__assistme-agent__skill_browse",