capacitor-mobile-claw 1.0.9 → 1.0.10

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.
@@ -1841,16 +1841,9 @@ channel.addListener('message', async (event) => {
1841
1841
  }
1842
1842
 
1843
1843
  case 'skill.start': {
1844
- if (msg.skill === 'setup') {
1845
- const agentId = msg.agentId || 'main';
1846
- const locale = msg.locale || 'en';
1847
- await runSetupSkill(agentId, locale, msg.config || null);
1848
- } else {
1849
- channel.send('message', {
1850
- type: 'agent.error',
1851
- error: `Unknown skill: ${msg.skill}`,
1852
- });
1853
- }
1844
+ const agentId = msg.agentId || 'main';
1845
+ const locale = msg.locale || 'en';
1846
+ await runSetupSkill(agentId, locale, msg.config || null);
1854
1847
  break;
1855
1848
  }
1856
1849
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-mobile-claw",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "On-device AI agent engine for Capacitor apps — embedded Node.js worker with LLM, file tools, code execution, git, and extensible MCP server",
5
5
  "main": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",