@jam-mcp/bootstrap 1.0.1 → 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.
- package/LICENSE +21 -21
- package/README.md +46 -46
- package/package.json +51 -51
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 colosair
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 colosair
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
# @jam-mcp/bootstrap
|
|
2
|
-
|
|
3
|
-
The zero-install way into [JAM (Jira Agent MCP)](https://github.com/colosair/jam).
|
|
4
|
-
|
|
5
|
-
This package exists so the *first* command a person or a coding agent runs needs
|
|
6
|
-
nothing installed beforehand:
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
npx --yes @jam-mcp/bootstrap@1.0
|
|
10
|
-
npx --yes @jam-mcp/bootstrap@1.0
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
`init` chooses how JAM runs on this machine and wires up the current project.
|
|
14
|
-
`setup --agent` detects, plans, applies what is safe, and verifies — stopping
|
|
15
|
-
only where a person is genuinely required (choosing a Jira project,
|
|
16
|
-
authenticating).
|
|
17
|
-
|
|
18
|
-
## What it is, and is not
|
|
19
|
-
|
|
20
|
-
It is an end-user entry point, but it holds **no setup logic of its own**. It
|
|
21
|
-
depends on `@jam-mcp/server` at an exact version and forwards to the same
|
|
22
|
-
commands JAM's own CLI would run; anything other than `init` is passed through
|
|
23
|
-
unchanged. Any decision made here would be a second implementation to keep in
|
|
24
|
-
sync with the setup core.
|
|
25
|
-
|
|
26
|
-
That pass-through is also why bootstrap is what JAM names in machine-readable
|
|
27
|
-
instructions. On a machine that has just met JAM there is no global command to
|
|
28
|
-
call and no configured runtime for the launcher to dispatch to — bootstrap
|
|
29
|
-
needs neither, so `npx --yes @jam-mcp/bootstrap@1.0
|
|
30
|
-
nothing else does.
|
|
31
|
-
|
|
32
|
-
The three packages divide up like this:
|
|
33
|
-
|
|
34
|
-
| Package | Role |
|
|
35
|
-
|---|---|
|
|
36
|
-
| `@jam-mcp/bootstrap` | first run and recovery — needs nothing installed |
|
|
37
|
-
| `@jam-mcp/launcher` | what a coding agent registers; resolves which JAM build runs |
|
|
38
|
-
| `@jam-mcp/server` | JAM itself: MCP tools, setup core, CLI |
|
|
39
|
-
|
|
40
|
-
Day to day you don't need this package: your coding agent launches the
|
|
41
|
-
launcher, and if you installed the launcher globally you have `jam` too.
|
|
42
|
-
|
|
43
|
-
## More
|
|
44
|
-
|
|
45
|
-
- [Repository README](https://github.com/colosair/jam#readme)
|
|
46
|
-
- [Distribution and bootstrap](https://github.com/colosair/jam/blob/main/docs/architecture/distribution-and-bootstrap.md)
|
|
1
|
+
# @jam-mcp/bootstrap
|
|
2
|
+
|
|
3
|
+
The zero-install way into [JAM (Jira Agent MCP)](https://github.com/colosair/jam).
|
|
4
|
+
|
|
5
|
+
This package exists so the *first* command a person or a coding agent runs needs
|
|
6
|
+
nothing installed beforehand:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npx --yes @jam-mcp/bootstrap@1.2.0 init # for a person
|
|
10
|
+
npx --yes @jam-mcp/bootstrap@1.2.0 setup --agent # for a coding agent, JSON only
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
`init` chooses how JAM runs on this machine and wires up the current project.
|
|
14
|
+
`setup --agent` detects, plans, applies what is safe, and verifies — stopping
|
|
15
|
+
only where a person is genuinely required (choosing a Jira project,
|
|
16
|
+
authenticating).
|
|
17
|
+
|
|
18
|
+
## What it is, and is not
|
|
19
|
+
|
|
20
|
+
It is an end-user entry point, but it holds **no setup logic of its own**. It
|
|
21
|
+
depends on `@jam-mcp/server` at an exact version and forwards to the same
|
|
22
|
+
commands JAM's own CLI would run; anything other than `init` is passed through
|
|
23
|
+
unchanged. Any decision made here would be a second implementation to keep in
|
|
24
|
+
sync with the setup core.
|
|
25
|
+
|
|
26
|
+
That pass-through is also why bootstrap is what JAM names in machine-readable
|
|
27
|
+
instructions. On a machine that has just met JAM there is no global command to
|
|
28
|
+
call and no configured runtime for the launcher to dispatch to — bootstrap
|
|
29
|
+
needs neither, so `npx --yes @jam-mcp/bootstrap@1.2.0 <anything>` works when
|
|
30
|
+
nothing else does.
|
|
31
|
+
|
|
32
|
+
The three packages divide up like this:
|
|
33
|
+
|
|
34
|
+
| Package | Role |
|
|
35
|
+
|---|---|
|
|
36
|
+
| `@jam-mcp/bootstrap` | first run and recovery — needs nothing installed |
|
|
37
|
+
| `@jam-mcp/launcher` | what a coding agent registers; resolves which JAM build runs |
|
|
38
|
+
| `@jam-mcp/server` | JAM itself: MCP tools, setup core, CLI |
|
|
39
|
+
|
|
40
|
+
Day to day you don't need this package: your coding agent launches the
|
|
41
|
+
launcher, and if you installed the launcher globally you have `jam` too.
|
|
42
|
+
|
|
43
|
+
## More
|
|
44
|
+
|
|
45
|
+
- [Repository README](https://github.com/colosair/jam#readme)
|
|
46
|
+
- [Distribution and bootstrap](https://github.com/colosair/jam/blob/main/docs/architecture/distribution-and-bootstrap.md)
|
package/package.json
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@jam-mcp/bootstrap",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Zero-install entry point for JAM (Jira Agent MCP) - first-run setup for humans and coding agents",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"jira",
|
|
7
|
-
"mcp",
|
|
8
|
-
"model-context-protocol",
|
|
9
|
-
"claude-code",
|
|
10
|
-
"codex",
|
|
11
|
-
"setup"
|
|
12
|
-
],
|
|
13
|
-
"homepage": "https://github.com/colosair/jam#readme",
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/colosair/jam/issues"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/colosair/jam.git",
|
|
20
|
-
"directory": "packages/bootstrap"
|
|
21
|
-
},
|
|
22
|
-
"author": "colosair (https://github.com/colosair)",
|
|
23
|
-
"type": "module",
|
|
24
|
-
"bin": {
|
|
25
|
-
"jam-bootstrap": "dist/cli.js"
|
|
26
|
-
},
|
|
27
|
-
"main": "dist/cli.js",
|
|
28
|
-
"engines": {
|
|
29
|
-
"node": ">=20"
|
|
30
|
-
},
|
|
31
|
-
"files": [
|
|
32
|
-
"dist",
|
|
33
|
-
"!dist/**/*.js.map",
|
|
34
|
-
"README.md"
|
|
35
|
-
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "tsc"
|
|
38
|
-
},
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"@jam-mcp/server": "1.0
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@types/node": "^24.0.0",
|
|
44
|
-
"typescript": "^5.9.0"
|
|
45
|
-
},
|
|
46
|
-
"license": "MIT",
|
|
47
|
-
"publishConfig": {
|
|
48
|
-
"access": "public",
|
|
49
|
-
"registry": "https://registry.npmjs.org/"
|
|
50
|
-
}
|
|
51
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@jam-mcp/bootstrap",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "Zero-install entry point for JAM (Jira Agent MCP) - first-run setup for humans and coding agents",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"jira",
|
|
7
|
+
"mcp",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"claude-code",
|
|
10
|
+
"codex",
|
|
11
|
+
"setup"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/colosair/jam#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/colosair/jam/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/colosair/jam.git",
|
|
20
|
+
"directory": "packages/bootstrap"
|
|
21
|
+
},
|
|
22
|
+
"author": "colosair (https://github.com/colosair)",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"bin": {
|
|
25
|
+
"jam-bootstrap": "dist/cli.js"
|
|
26
|
+
},
|
|
27
|
+
"main": "dist/cli.js",
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=20"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"!dist/**/*.js.map",
|
|
34
|
+
"README.md"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsc"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@jam-mcp/server": "1.2.0"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "^24.0.0",
|
|
44
|
+
"typescript": "^5.9.0"
|
|
45
|
+
},
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public",
|
|
49
|
+
"registry": "https://registry.npmjs.org/"
|
|
50
|
+
}
|
|
51
|
+
}
|