agentic-swe 1.0.0 → 1.1.1

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.
@@ -4,7 +4,7 @@ Scaffold or repair the `.claude/` pipeline directory inside a target repository.
4
4
 
5
5
  All pipeline files live under `.claude/` in the source repo. This command copies them to the target repository's `.claude/` directory.
6
6
 
7
- > **Note**: For first-time installation, prefer `install.sh` (the shell script) since it works outside Claude Code. This `/install` command is useful for repairs and upgrades when running Claude Code from inside the agentic-swe repo.
7
+ > **Note**: First-time installation must use **`npx agentic-swe`** or **`agentic-swe install`** (npm only—do not direct end users to clone a repository). This `/install` command is for guided repairs after `.claude/` already exists in the project.
8
8
 
9
9
  ## Prompt
10
10
 
package/CLAUDE.md CHANGED
@@ -41,7 +41,7 @@ External tools (MCP, web search, etc.) supplement local evidence but do not repl
41
41
 
42
42
  When installing into a target repository that already has a `CLAUDE.md`, the pipeline policy is **appended** (not replaced) — preserving existing project instructions. See `.claude/commands/install.md` for the delimiter convention.
43
43
 
44
- If `.claude/` is missing in a target repository on first run, bootstrap it using `install.sh` or by copying the `.claude/` directory.
44
+ If `.claude/` is missing in a target repository on first run, bootstrap it using **`npx agentic-swe`** (or `npm install -g agentic-swe` then `agentic-swe install`). End users must not rely on cloning a source repository to install; the npm package is the supported distribution.
45
45
 
46
46
  ## Source Of Truth
47
47
 
@@ -331,7 +331,7 @@ Reusable slash commands that phases and agents invoke for structured, evidence-b
331
331
 
332
332
  ## Common Operations
333
333
 
334
- **Install pipeline into a target repo:** Use `install.sh`
334
+ **Install pipeline into a target repo:** Use **`npx agentic-swe`** / **`agentic-swe install`** only (npm registry).
335
335
 
336
336
  **Start new work:** Use `/work` with a task description.
337
337
 
package/README.md CHANGED
@@ -4,53 +4,39 @@ Autonomous software engineering pipeline for Claude Code with 135+ specialized s
4
4
 
5
5
  Claude Code becomes a full SWE pipeline -- from task analysis through implementation, review, and PR creation -- with no runtime code. Everything is pure markdown: policies, phase prompts, agent definitions, and templates.
6
6
 
7
+ **End users:** install **only from npm**. Do not clone a source repository to install the pipeline—use the commands below.
8
+
7
9
  ## Quick Start
8
10
 
9
- **Option A npm** (after the package is [published](https://www.npmjs.com/package/agentic-swe)):
11
+ Install [from npm](https://www.npmjs.com/package/agentic-swe) (Node 18+):
10
12
 
11
13
  ```bash
12
14
  npx agentic-swe /path/to/your/project
13
15
  # or: npm install -g agentic-swe && agentic-swe install /path/to/your/project
14
16
  ```
15
17
 
16
- **Option B clone + script:**
18
+ Then open Claude Code in that project and start a task:
17
19
 
18
20
  ```bash
19
- # 1. Clone agentic-swe
20
- git clone https://github.com/surajSFDC/agentic-swe.git /tmp/agentic-swe
21
-
22
- # 2. Install into your project (one command)
23
- /tmp/agentic-swe/install.sh /path/to/your/project
24
-
25
- # 3. Open Claude Code in your project
26
21
  cd /path/to/your/project && claude
27
-
28
- # 4. Start working
29
- /work Add retry logic to the API client
30
22
  ```
31
23
 
32
- Or if you prefer to run `/install` from within Claude Code:
33
-
34
- ```bash
35
- # 1. Clone agentic-swe and open Claude Code inside it
36
- git clone https://github.com/surajSFDC/agentic-swe.git && cd agentic-swe && claude
37
-
38
- # 2. Run /install — it will scaffold .claude/ in the target repo
39
- /install
24
+ ```
25
+ /work Add retry logic to the API client
40
26
  ```
41
27
 
42
- See [docs/installation.md](docs/installation.md) for manual install, selective install (subagents only), and more options.
28
+ See the [installation guide](https://d3pi4w4hqr9gq6.cloudfront.net/installation.md) for upgrades and selective installs.
43
29
 
44
30
  ## Product
45
31
 
46
- Agentic SWE is a **workflow pack for Claude Code** (markdown policies, phases, and agents)—not a hosted cloud runtime. For positioning, licensing, commercial options, and how to distribute the repo vs the marketing site:
32
+ Agentic SWE is a **workflow pack for Claude Code** (markdown policies, phases, and agents)—not a hosted cloud runtime. More on the product and licensing:
47
33
 
48
34
  | Topic | Doc |
49
35
  |-------|-----|
50
- | Who it is for and hero messaging | [docs/product-positioning.md](docs/product-positioning.md) |
51
- | MIT and commercial strategy | [docs/licensing.md](docs/licensing.md) |
52
- | Pro / services (first paid wedges) | [PRO.md](PRO.md) |
53
- | Public vs private repo, site hosting | [docs/distribution.md](docs/distribution.md) |
36
+ | Who it is for and hero messaging | [Product positioning](https://d3pi4w4hqr9gq6.cloudfront.net/product-positioning.md) |
37
+ | MIT and commercial strategy | [Licensing](https://d3pi4w4hqr9gq6.cloudfront.net/licensing.md) |
38
+ | Pro / services (first paid wedges) | [Pro & services](https://d3pi4w4hqr9gq6.cloudfront.net/PRO.md) |
39
+ | Distribution and hosting | [Distribution](https://d3pi4w4hqr9gq6.cloudfront.net/distribution.md) |
54
40
 
55
41
  ## How It Works
56
42
 
@@ -83,7 +69,7 @@ Human gates stop the pipeline at `ambiguity-wait`, `approval-wait`, and escalati
83
69
  | `/repo-scan` | Structured codebase snapshot |
84
70
  | `/check budget` | Verify iteration budgets |
85
71
 
86
- See [docs/usage.md](docs/usage.md) for the full commands reference.
72
+ See the [usage reference](https://d3pi4w4hqr9gq6.cloudfront.net/usage.md) for the full commands list.
87
73
 
88
74
  ## Specialized Subagents
89
75
 
@@ -102,7 +88,7 @@ See [docs/usage.md](docs/usage.md) for the full commands reference.
102
88
  | **Meta & Orchestration** | 10 | `multi-agent-coordinator`, `workflow-orchestrator` |
103
89
  | **Research & Analysis** | 7 | `competitive-analyst`, `trend-analyst`, `research-analyst` |
104
90
 
105
- See [docs/subagent-catalog.md](docs/subagent-catalog.md) for the full catalog with models and descriptions.
91
+ See the [subagent catalog](https://d3pi4w4hqr9gq6.cloudfront.net/subagent-catalog.md) for the full catalog with models and descriptions.
106
92
 
107
93
  ## Examples
108
94
 
@@ -132,7 +118,7 @@ to audit the payment processing module in src/payments/
132
118
  /plan-only Migrate the monolithic API to microservices with gRPC
133
119
  ```
134
120
 
135
- See [docs/examples.md](docs/examples.md) for 8 detailed walkthroughs.
121
+ See [examples](https://d3pi4w4hqr9gq6.cloudfront.net/examples.md) for detailed walkthroughs.
136
122
 
137
123
  ## Architecture
138
124
 
@@ -163,8 +149,7 @@ agentic-swe/
163
149
  ├── README.md
164
150
  ├── package.json # npm package (CLI: agentic-swe)
165
151
  ├── bin/agentic-swe.js # npm install entrypoint
166
- ├── install.sh # One-command installer for target repos
167
- ├── docs/ # Detailed documentation
152
+ ├── docs/ # Documentation (mirrored on the [project site](https://d3pi4w4hqr9gq6.cloudfront.net/))
168
153
  │ ├── installation.md
169
154
  │ ├── usage.md
170
155
  │ ├── examples.md
@@ -184,7 +169,7 @@ agentic-swe/
184
169
  │ └── subagents/ # 10 category directories
185
170
  ├── templates/ # State schema, evidence standard, artifact format
186
171
  ├── tools/ # Subagent catalog tool
187
- ├── references/ # Git/GitHub reference docs
172
+ ├── references/ # Git and PR workflow reference docs
188
173
  └── .work/ # Runtime state (gitignored)
189
174
  ```
190
175
 
@@ -201,4 +186,4 @@ Built on research from SWE-agent, Agentless, Ambig-SWE, Reflexion, Self-Refine,
201
186
 
202
187
  ## License
203
188
 
204
- [MIT](LICENSE). Commercial services and optional Pro offerings are described in [PRO.md](PRO.md); see [docs/licensing.md](docs/licensing.md) for how MIT relates to product packaging (not legal advice).
189
+ [MIT](LICENSE). Commercial services and optional Pro offerings are described on the [Pro & services](https://d3pi4w4hqr9gq6.cloudfront.net/PRO.md) page; see [licensing](https://d3pi4w4hqr9gq6.cloudfront.net/licensing.md) for how MIT relates to product packaging (not legal advice).
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * Installs Agentic SWE into a target project (same behavior as install.sh).
3
+ * Installs Agentic SWE into a target project from the published npm package.
4
+ * End users should use this CLI (or npx); do not direct them to clone a repo to install.
4
5
  */
5
6
  'use strict';
6
7
 
package/package.json CHANGED
@@ -1,17 +1,10 @@
1
1
  {
2
2
  "name": "agentic-swe",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "Autonomous SWE pipeline for Claude Code — install markdown policies, phases, and agents into your repo",
5
5
  "license": "MIT",
6
6
  "author": "Suraj Gupta",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/surajSFDC/agentic-swe.git"
10
- },
11
- "homepage": "https://github.com/surajSFDC/agentic-swe#readme",
12
- "bugs": {
13
- "url": "https://github.com/surajSFDC/agentic-swe/issues"
14
- },
7
+ "homepage": "https://d3pi4w4hqr9gq6.cloudfront.net",
15
8
  "keywords": [
16
9
  "claude",
17
10
  "claude-code",