|
2 | 2 | "name": "clawdcontext", |
3 | 3 | "displayName": "ClawdContext — Markdown OS for AI Agents", |
4 | 4 | "description": "VS Code extension for AI coding agent Markdown systems: CER dashboard, mdcc-style diagnostics, lessons governance, SKILL.md security scanning, and quick-fix refactors.", |
5 | | - "version": "0.4.1", |
| 5 | + "version": "0.5.0", |
6 | 6 | "publisher": "clawdcontext", |
7 | 7 | "author": { |
8 | 8 | "name": "Claudisiar" |
|
18 | 18 | }, |
19 | 19 | "qna": "https://github.com/yaamwebsolutions/clawdcontext4vscode/discussions", |
20 | 20 | "pricing": "Free", |
| 21 | + "badges": [ |
| 22 | + { |
| 23 | + "url": "https://img.shields.io/github/actions/workflow/status/yaamwebsolutions/clawdcontext4vscode/ci.yml?branch=main&label=CI&logo=github", |
| 24 | + "href": "https://github.com/yaamwebsolutions/clawdcontext4vscode/actions/workflows/ci.yml", |
| 25 | + "description": "CI status" |
| 26 | + }, |
| 27 | + { |
| 28 | + "url": "https://img.shields.io/github/license/yaamwebsolutions/clawdcontext4vscode?color=blue", |
| 29 | + "href": "https://github.com/yaamwebsolutions/clawdcontext4vscode/blob/main/LICENSE", |
| 30 | + "description": "License: MIT" |
| 31 | + }, |
| 32 | + { |
| 33 | + "url": "https://img.shields.io/github/stars/yaamwebsolutions/clawdcontext4vscode?style=social", |
| 34 | + "href": "https://github.com/yaamwebsolutions/clawdcontext4vscode", |
| 35 | + "description": "GitHub Stars" |
| 36 | + } |
| 37 | + ], |
21 | 38 | "engines": { |
22 | 39 | "vscode": "^1.96.0" |
23 | 40 | }, |
|
203 | 220 | "command": "clawdcontext.aiContradictions", |
204 | 221 | "title": "ClawdContext AI: Detect Contradictions", |
205 | 222 | "icon": "$(warning)" |
| 223 | + }, |
| 224 | + { |
| 225 | + "command": "clawdcontext.initOS", |
| 226 | + "title": "ClawdContext: Initialize OS Workspace", |
| 227 | + "icon": "$(rocket)" |
| 228 | + }, |
| 229 | + { |
| 230 | + "command": "clawdcontext.osStatus", |
| 231 | + "title": "ClawdContext: OS System Status", |
| 232 | + "icon": "$(shield)" |
| 233 | + }, |
| 234 | + { |
| 235 | + "command": "clawdcontext.skillForge", |
| 236 | + "title": "ClawdContext: Create Skill with Skill Forge", |
| 237 | + "icon": "$(symbol-constructor)" |
| 238 | + }, |
| 239 | + { |
| 240 | + "command": "clawdcontext.skillForgeToggleServer", |
| 241 | + "title": "ClawdContext: Toggle Skill Forge Server", |
| 242 | + "icon": "$(server-process)" |
206 | 243 | } |
207 | 244 | ], |
208 | 245 | "viewsContainers": { |
|
409 | 446 | "command": "clawdcontext.scaffoldMarkdownOS", |
410 | 447 | "when": "view == clawdcontext.layers", |
411 | 448 | "group": "overflow@5" |
| 449 | + }, |
| 450 | + { |
| 451 | + "command": "clawdcontext.initOS", |
| 452 | + "when": "view == clawdcontext.layers", |
| 453 | + "group": "overflow@6" |
| 454 | + }, |
| 455 | + { |
| 456 | + "command": "clawdcontext.osStatus", |
| 457 | + "when": "view == clawdcontext.layers", |
| 458 | + "group": "overflow@7" |
412 | 459 | } |
413 | 460 | ], |
414 | 461 | "view/item/context": [ |
|
638 | 685 | "type": "string", |
639 | 686 | "default": "", |
640 | 687 | "description": "Passphrase for the PFX/P12 certificate. Only needed if your PFX file is password-protected." |
| 688 | + }, |
| 689 | + "clawdcontext.skillForge.serverUrl": { |
| 690 | + "type": "string", |
| 691 | + "default": "http://localhost:8742", |
| 692 | + "description": "Skill Forge Studio backend URL.", |
| 693 | + "markdownDescription": "URL of the Skill Forge Studio backend.\n\nDefault: `http://localhost:8742`\n\nChange this if you run the backend on a different host or port." |
| 694 | + }, |
| 695 | + "clawdcontext.skillForge.apiKey": { |
| 696 | + "type": "string", |
| 697 | + "default": "", |
| 698 | + "description": "Optional API key for the Skill Forge Studio backend (if protected)." |
| 699 | + }, |
| 700 | + "clawdcontext.skillForge.autoStart": { |
| 701 | + "type": "boolean", |
| 702 | + "default": false, |
| 703 | + "description": "Automatically start the Skill Forge Studio backend when the extension activates.", |
| 704 | + "markdownDescription": "Automatically start the Skill Forge Studio Python backend when the extension activates.\n\nRequires `skill_forge_studio/` with a Python venv in the workspace." |
641 | 705 | } |
642 | 706 | } |
643 | 707 | }, |
|
0 commit comments