run-ctc 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +37 -0
  2. package/README.md +20 -0
  3. package/bin/ctc.js +10 -0
  4. package/package.json +37 -0
package/LICENSE ADDED
@@ -0,0 +1,37 @@
1
+ Coding Tools MCP Source-Available License v1.0
2
+
3
+ Copyright (c) 2026 Coding Tools MCP Contributors.
4
+ All rights reserved except as expressly granted below.
5
+
6
+ 1. Permitted Use
7
+
8
+ You may view, clone, build, run, and modify the Software solely for internal
9
+ evaluation, development, testing, and security review.
10
+
11
+ 2. Restrictions
12
+
13
+ Without prior written permission from the copyright holders, you may not:
14
+
15
+ - distribute, publish, sublicense, sell, lease, or otherwise transfer the
16
+ Software or modified versions of the Software;
17
+ - provide the Software or modified versions as a hosted, managed, or
18
+ software-as-a-service offering for third parties;
19
+ - use the Software or modified versions for production commercial purposes;
20
+ - remove or alter copyright, license, or attribution notices;
21
+ - use the project name, trademarks, or branding to imply endorsement.
22
+
23
+ 3. Contributions
24
+
25
+ Unless a separate written agreement says otherwise, any contribution submitted
26
+ to this project may be used by the copyright holders under this license and
27
+ under any future license chosen by the copyright holders.
28
+
29
+ 4. No Warranty
30
+
31
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
35
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM,
36
+ OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # run-ctc
2
+
3
+ Name alias for [`coding-tools-conductor`](https://www.npmjs.com/package/coding-tools-conductor), the Coding Tools Conductor CLI/TUI (`ctc`).
4
+
5
+ Both packages install the same `ctc` command; this one simply delegates to the canonical package. Install one or the other, not both:
6
+
7
+ ```bash
8
+ npm install -g coding-tools-conductor # canonical
9
+ # or
10
+ npm install -g run-ctc # this alias
11
+ ctc --help
12
+ ```
13
+
14
+ No install needed for a one-off run — npx resolves the package's sole `bin` entry regardless of the package name:
15
+
16
+ ```bash
17
+ npx run-ctc --help
18
+ ```
19
+
20
+ Source, documentation, and issues live in the [coding-tools-mcp repository](https://github.com/xyTom/coding-tools-mcp/tree/main/conductor).
package/bin/ctc.js ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // run-ctc is a published name alias: it installs the same `ctc` command and
3
+ // delegates to the canonical coding-tools-conductor package in-process, so
4
+ // argv, stdio, and the TTY behave exactly as if that package were run
5
+ // directly.
6
+ import("coding-tools-conductor/dist/index.js").catch((error) => {
7
+ const message = error instanceof Error ? error.message : String(error);
8
+ process.stderr.write(`run-ctc could not load coding-tools-conductor: ${message}\n`);
9
+ process.exit(1);
10
+ });
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "run-ctc",
3
+ "version": "0.1.0",
4
+ "description": "ctc command alias for coding-tools-conductor, the Coding Tools Conductor CLI/TUI. Run with npx run-ctc.",
5
+ "type": "module",
6
+ "license": "SEE LICENSE IN LICENSE",
7
+ "engines": {
8
+ "node": ">=20"
9
+ },
10
+ "bin": {
11
+ "ctc": "bin/ctc.js"
12
+ },
13
+ "files": [
14
+ "bin",
15
+ "README.md"
16
+ ],
17
+ "dependencies": {
18
+ "coding-tools-conductor": "^0.1.0-beta.1"
19
+ },
20
+ "keywords": [
21
+ "mcp",
22
+ "model-context-protocol",
23
+ "coding-agent",
24
+ "cli",
25
+ "conductor",
26
+ "ctc"
27
+ ],
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/xyTom/coding-tools-mcp.git",
31
+ "directory": "npm/run-ctc"
32
+ },
33
+ "homepage": "https://github.com/xyTom/coding-tools-mcp/tree/main/conductor#readme",
34
+ "bugs": {
35
+ "url": "https://github.com/xyTom/coding-tools-mcp/issues"
36
+ }
37
+ }