@emseepea/create-resources-and-prompts-server 0.0.2 → 0.0.3

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/README.md CHANGED
@@ -1,22 +1,54 @@
1
1
  # `@emseepea/create-resources-and-prompts-server`
2
2
 
3
- Create a private, standalone Em See Pea project with resources and prompts.
4
- The package builds its starter from the maintained
5
- [resources and prompts example](https://github.com/emseepea/emseepea/tree/main/examples/resources-prompts).
6
-
7
- ## Create the Project
8
-
9
- This initializer is queued for the next pre-alpha release and is not yet
10
- available from npm.
3
+ This directory is both the maintained example and its public npm initializer.
11
4
 
12
5
  ```sh
13
6
  npm init @emseepea/resources-and-prompts-server@next -- my-server
14
7
  ```
15
8
 
9
+ <!-- generated-project-readme -->
10
+
11
+ ## Resources and Prompts Example
12
+
13
+ Choose this example when you want to give an assistant reusable reference
14
+ content and guided starting questions, without adding another tool.
15
+
16
+ It provides:
17
+
18
+ - a fixed resource at one known address
19
+ - a resource pattern for related content at predictable addresses
20
+ - a reusable prompt with one checked argument
21
+ - optional suggestions for the resource and prompt fields
22
+
23
+ ## Run
24
+
25
+ From this directory:
26
+
16
27
  ```sh
17
- cd my-server
18
28
  npm install
19
- npm test
20
- npm run lint
29
+ npm run build
21
30
  npm start
22
31
  ```
32
+
33
+ The server listens on `http://127.0.0.1:3000/mcp` by default. Set `PORT` to
34
+ choose another port.
35
+
36
+ ## Check This Example
37
+
38
+ [Ordinary tests](test/) live in `test/`.
39
+ The [AI understanding test](eval/meaning.test.mjs) lives separately in `eval/`.
40
+ The commands below run each suite independently.
41
+
42
+ Run its build and MCP resource and prompt checks:
43
+
44
+ ```sh
45
+ npm test
46
+ ```
47
+
48
+ Check that Claude keeps coffee strength and extraction distinct:
49
+
50
+ ```sh
51
+ npm run test:llm
52
+ ```
53
+
54
+ If Claude is not already signed in, run `claude auth login` first.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "emseepea-starter",
3
3
  "version": "0.0.0",
4
- "private": true,
4
+ "description": "Create an Em See Pea server with resources and prompts.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "scripts": {
@@ -13,10 +13,6 @@
13
13
  "test:llm:built": "emseepea-test eval",
14
14
  "lint": "oxlint src test eval"
15
15
  },
16
- "dependencies": {
17
- "@emseepea/server": "0.1.0",
18
- "zod": "4.4.3"
19
- },
20
16
  "devDependencies": {
21
17
  "@emseepea/testing": "0.2.1",
22
18
  "@types/node": "24.13.3",
@@ -25,5 +21,10 @@
25
21
  },
26
22
  "engines": {
27
23
  "node": ">=22"
24
+ },
25
+ "private": true,
26
+ "dependencies": {
27
+ "@emseepea/server": "0.2.1",
28
+ "zod": "4.4.3"
28
29
  }
29
30
  }
package/package.json CHANGED
@@ -1,22 +1,37 @@
1
1
  {
2
2
  "name": "@emseepea/create-resources-and-prompts-server",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Create an Em See Pea server with resources and prompts.",
5
5
  "license": "MIT",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/emseepea/emseepea.git",
9
- "directory": "packages/create-resources-and-prompts-server"
6
+ "type": "module",
7
+ "starterDependencies": ["@emseepea/server", "zod"],
8
+ "scripts": {
9
+ "build": "npm run build:example && npm run build:initializer",
10
+ "build:example": "tsc -p tsconfig.json",
11
+ "build:initializer": "node ../../scripts/build-initializer.mjs",
12
+ "start": "node dist/server.js",
13
+ "test": "npm run build && npm run test:built",
14
+ "test:built": "node --test test/*.test.mjs",
15
+ "test:llm": "npm run build && npm run test:llm:built",
16
+ "test:llm:built": "emseepea-test eval",
17
+ "lint": "oxlint src test eval",
18
+ "prepack": "npm run build:initializer"
19
+ },
20
+ "devDependencies": {
21
+ "@emseepea/server": "0.2.1",
22
+ "zod": "4.4.3",
23
+ "@emseepea/testing": "0.2.1",
24
+ "@types/node": "24.13.3",
25
+ "typescript": "6.0.3",
26
+ "oxlint": "1.80.0"
27
+ },
28
+ "engines": {
29
+ "node": ">=22"
10
30
  },
31
+ "repository": { "type": "git", "url": "git+https://github.com/emseepea/emseepea.git", "directory": "examples/resources-prompts" },
11
32
  "homepage": "https://emseepea.github.io/emseepea/examples/",
12
33
  "bugs": "https://github.com/emseepea/emseepea/issues",
13
34
  "publishConfig": { "access": "public", "provenance": true, "tag": "next" },
14
- "type": "module",
15
- "bin": { "create-resources-and-prompts-server": "./dist/create.mjs" },
16
- "files": ["dist"],
17
- "scripts": {
18
- "build": "node ../../scripts/build-initializer.mjs",
19
- "prepack": "npm run build"
20
- },
21
- "engines": { "node": ">=22" }
35
+ "bin": { "create-resources-and-prompts-server": "./initializer-dist/create.mjs" },
36
+ "files": ["initializer-dist"]
22
37
  }
File without changes
File without changes
File without changes