slopcode 0.0.12 → 0.0.23

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 (2) hide show
  1. package/README.md +48 -0
  2. package/package.json +40 -12
package/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # SlopCode
2
+
3
+ [![npm version](https://img.shields.io/npm/v/slopcode?style=flat-square)](https://www.npmjs.com/package/slopcode)
4
+ [![npm downloads](https://img.shields.io/npm/dm/slopcode?style=flat-square)](https://www.npmjs.com/package/slopcode)
5
+ [![discord](https://img.shields.io/discord/1391832426048651334?style=flat-square&label=discord)](https://slopcode.dev/discord)
6
+
7
+ SlopCode is the open source AI coding agent focused on terminal workflows.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ npm i -g slopcode@latest
13
+ ```
14
+
15
+ ## Quickstart
16
+
17
+ ```bash
18
+ slopcode
19
+ ```
20
+
21
+ Use `Tab` to switch agents, then ask for code changes, debugging, or repo exploration directly from your terminal.
22
+
23
+ ## Features
24
+
25
+ - Terminal-first AI coding workflow
26
+ - Built-in planning and execution agents
27
+ - Works with multiple model providers
28
+ - Local session history and resumable conversations
29
+ - Open source with transparent release channels
30
+
31
+ ## Release Channels
32
+
33
+ ```bash
34
+ # Stable
35
+ npm i -g slopcode@latest
36
+
37
+ # Pre-release streams
38
+ npm i -g slopcode@dev
39
+ npm i -g slopcode@beta
40
+ ```
41
+
42
+ ## Links
43
+
44
+ - Docs: https://slopcode.dev/docs
45
+ - Download desktop app: https://slopcode.dev/download
46
+ - GitHub: https://github.com/teamslop/slopcode
47
+ - Report issues: https://github.com/teamslop/slopcode/issues
48
+ - Discord: https://slopcode.dev/discord
package/package.json CHANGED
@@ -1,24 +1,52 @@
1
1
  {
2
2
  "name": "slopcode",
3
+ "description": "The open source AI coding agent.",
4
+ "homepage": "https://slopcode.dev",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/teamslop/slopcode.git"
8
+ },
9
+ "bugs": {
10
+ "url": "https://github.com/teamslop/slopcode/issues"
11
+ },
12
+ "keywords": [
13
+ "ai",
14
+ "agent",
15
+ "coding",
16
+ "cli",
17
+ "terminal",
18
+ "tui",
19
+ "developer-tools",
20
+ "llm"
21
+ ],
22
+ "funding": {
23
+ "url": "https://github.com/sponsors/teamslop"
24
+ },
3
25
  "bin": {
4
26
  "slopcode": "./bin/slopcode"
5
27
  },
28
+ "files": [
29
+ "bin",
30
+ "postinstall.mjs",
31
+ "README.md",
32
+ "LICENSE"
33
+ ],
6
34
  "scripts": {
7
35
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
8
36
  },
9
- "version": "0.0.12",
37
+ "version": "0.0.23",
10
38
  "license": "MIT",
11
39
  "optionalDependencies": {
12
- "slopcode-bin-linux-x64-baseline-musl": "0.0.12",
13
- "slopcode-bin-darwin-x64-baseline": "0.0.12",
14
- "slopcode-bin-linux-arm64-musl": "0.0.12",
15
- "slopcode-bin-darwin-x64": "0.0.12",
16
- "slopcode-bin-windows-x64": "0.0.12",
17
- "slopcode-bin-windows-x64-baseline": "0.0.12",
18
- "slopcode-bin-linux-x64-baseline": "0.0.12",
19
- "slopcode-bin-linux-x64-musl": "0.0.12",
20
- "slopcode-bin-linux-arm64": "0.0.12",
21
- "slopcode-bin-darwin-arm64": "0.0.12",
22
- "slopcode-bin-linux-x64": "0.0.12"
40
+ "slopcode-bin-linux-x64": "0.0.23",
41
+ "slopcode-bin-linux-x64-baseline-musl": "0.0.23",
42
+ "slopcode-bin-windows-x64-baseline": "0.0.23",
43
+ "slopcode-bin-linux-x64-baseline": "0.0.23",
44
+ "slopcode-bin-windows-x64": "0.0.23",
45
+ "slopcode-bin-darwin-x64-baseline": "0.0.23",
46
+ "slopcode-bin-darwin-arm64": "0.0.23",
47
+ "slopcode-bin-linux-x64-musl": "0.0.23",
48
+ "slopcode-bin-darwin-x64": "0.0.23",
49
+ "slopcode-bin-linux-arm64-musl": "0.0.23",
50
+ "slopcode-bin-linux-arm64": "0.0.23"
23
51
  }
24
52
  }