rscot-agent 1.2.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 +161 -0
  2. package/README.md +81 -0
  3. package/dist/index.js +1741 -0
  4. package/package.json +54 -0
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "rscot-agent",
3
+ "version": "1.2.0",
4
+ "description": "Rscot Agent (rscot) — local-first, source-available coding agent. One-shot npx onramp that walks you through provider/key setup.",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "type": "module",
7
+ "bin": {
8
+ "rscot": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "engines": {
16
+ "node": ">=18"
17
+ },
18
+ "scripts": {
19
+ "build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --packages=external --outfile=dist/index.js --banner:js=\"#!/usr/bin/env node\\nimport { createRequire as __rscotCreateRequire } from 'module'; const require = __rscotCreateRequire(import.meta.url);\"",
20
+ "dev": "tsx watch src/index.ts",
21
+ "prepublishOnly": "npm run build",
22
+ "start": "node dist/index.js"
23
+ },
24
+ "dependencies": {
25
+ "boxen": "^7.1.1",
26
+ "kleur": "^4.1.5",
27
+ "ora": "^7.0.1",
28
+ "prompts": "^2.4.2"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^20.11.0",
32
+ "@types/prompts": "^2.4.9",
33
+ "esbuild": "^0.20.0",
34
+ "tsx": "^4.7.0",
35
+ "typescript": "^5.3.3"
36
+ },
37
+ "keywords": [
38
+ "cli",
39
+ "agent",
40
+ "coding-agent",
41
+ "llm",
42
+ "deepseek",
43
+ "openai",
44
+ "anthropic",
45
+ "ollama",
46
+ "openrouter",
47
+ "local-first"
48
+ ],
49
+ "author": "Rscot Agent contributors",
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "https://recot.dev/rscot"
53
+ }
54
+ }