Skip to content

Commit 3d0ad29

Browse files
committed
Release 0.7.3: fix Droid install (@factory/cli), require VS Code 1.93+, add governance docs
1 parent ae8365d commit 3d0ad29

8 files changed

Lines changed: 63 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project are documented here. The format is based on
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6+
## [0.7.3]
7+
8+
- **Fixed the Droid install command.** The `droid` built-in now installs the official scoped npm
9+
package `@factory/cli` (which provides the `droid` binary) instead of the incorrect unscoped
10+
`droid` package.
11+
- **Raised the minimum VS Code version to `^1.93.0`**, the actual floor for the terminal shell
12+
integration APIs the extension uses (the manifest previously declared `^1.86.0`).
13+
- **Added** `CONTRIBUTING.md`, `SECURITY.md`, `SUPPORT.md`, and `TRADEMARKS.md` governance documents,
14+
and compiled against the `ES2022` target. No functional changes beyond the Droid fix.
15+
616
## [0.7.2]
717

818
- **Docs.** README updated to reflect 0.7.1: Cursor, Grok and Hermes now install natively on Windows

CONTRIBUTING.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Contributing
2+
3+
Thanks for your interest in improving Super CLI.
4+
5+
## Development
6+
7+
```bash
8+
npm install
9+
npm run check
10+
```
11+
12+
Keep changes focused and covered by tests. Do not add official logos, marks, screenshots, or branding assets of the third-party coding agents unless you have permission to use them.
13+
14+
## Pull Requests
15+
16+
- Keep user-facing behavior documented in `README.md`.
17+
- Add or update tests for launcher behavior, agent presets, and package metadata.
18+
- Run `npm run check` before submitting changes.

SECURITY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Security Policy
2+
3+
Please do not report security vulnerabilities through public GitHub issues.
4+
5+
Email security concerns to info@mikesoft.it with a clear description, affected version, and reproduction details.
6+
7+
This extension launches user-configured terminal commands, including the optional install and update commands defined in `superCli.agents`. Only the user (global) value of that setting is read; workspace overrides are ignored. Review workspace trust prompts and configuration changes before running commands in untrusted repositories.

SUPPORT.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Support
2+
3+
Use GitHub Issues for reproducible bugs, compatibility problems, and feature requests: https://github.com/TheStreamCode/super-cli/issues.
4+
5+
Please include:
6+
7+
- VS Code version
8+
- Operating system and version
9+
- Extension version
10+
- The coding agent you launched and its configured command
11+
- Whether that command works in a regular VS Code integrated terminal
12+
- Relevant terminal output, without secrets or authentication tokens
13+
14+
For non-public support questions, contact the maintainer at `info@mikesoft.it` or through https://mikesoft.it.
15+
16+
This project is maintained independently and cannot provide official support for the third-party coding agents it launches.

TRADEMARKS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Trademarks
2+
3+
This project is independent and unofficial. It is not affiliated with, endorsed by, sponsored by, or approved by any of the coding-agent vendors it can launch.
4+
5+
All product names, logos, brands, and trademarks are property of their respective owners. Names such as "Claude Code", "Codex", "GitHub Copilot", "Cursor", "Grok", "Kilo Code", "Antigravity", "OpenCode", and any other third-party agent names are used only to identify the CLIs that this launcher can start.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Super CLI — AI Coding Agent Launcher (Claude Code, Codex, Copilot)",
44
"description": "Launch any AI coding-agent CLI — Claude Code, Codex, GitHub Copilot, Cursor, Crush, OpenCode and more — from one sidebar and side terminal. Works in VS Code, Cursor, Antigravity & Windsurf on Windows, macOS & Linux.",
55
"publisher": "mikesoft",
6-
"version": "0.7.2",
6+
"version": "0.7.3",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/TheStreamCode/super-cli.git"
@@ -27,7 +27,7 @@
2727
},
2828
"pricing": "Free",
2929
"engines": {
30-
"vscode": "^1.86.0"
30+
"vscode": "^1.93.0"
3131
},
3232
"capabilities": {
3333
"untrustedWorkspaces": {
@@ -364,7 +364,7 @@
364364
"devDependencies": {
365365
"@vscode/test-electron": "^2.5.2",
366366
"@types/node": "^22.0.0",
367-
"@types/vscode": "^1.86.0",
367+
"@types/vscode": "^1.93.0",
368368
"@vscode/vsce": "^3.0.0",
369369
"typescript": "^5.0.0"
370370
}

src/agents.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ export const BUILTIN_AGENTS: readonly Agent[] = [
129129
label: 'Droid CLI',
130130
command: 'droid',
131131
icon: 'circuit-board',
132-
installCommand: 'npm install -g droid',
132+
// Factory ships Droid as the scoped npm package @factory/cli, which provides the `droid` binary.
133+
installCommand: 'npm install -g @factory/cli',
133134
autoInstall: true,
134135
updateCommand: 'droid update',
135136
},

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compilerOptions": {
33
"module": "NodeNext",
4-
"target": "ES2020",
4+
"target": "ES2022",
55
"lib": [
6-
"ES2020"
6+
"ES2022"
77
],
88
"outDir": "out",
99
"rootDir": "src",

0 commit comments

Comments
 (0)