@elicitkit/pack-pr-review 0.1.1 → 0.1.2

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 +10 -18
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,25 +1,17 @@
1
1
  # @elicitkit/pack-pr-review
2
2
 
3
- The flagship Elicitkit pack — the v0.1 wedge. Turn a pull request into one
4
- structured review round-trip:
3
+ > Elicitkit flagship pack — turn a pull request into a structured per-hunk review AskSet (the v0.1 wedge).
5
4
 
6
- 1. **`ask_code_diff`** accept/reject every hunk
7
- 2. **`ask_select`** — verdict (approve / nits / request changes)
8
- 3. **`ask_rating`** — merge risk (optional)
9
- 4. **`ask_text`** — blocking concerns (optional)
5
+ Part of **[Elicitkit](https://github.com/elicitkit/elicitkit)**typed questions for AI agents. An open standard over MCP: a portable spec (Ask · AskSet · Answer), a TypeScript reference implementation, and an 84-fixture conformance suite.
10
6
 
11
- ```ts
12
- import { buildPrReviewAskSet } from "@elicitkit/pack-pr-review";
7
+ ## Install
13
8
 
14
- const askSet = buildPrReviewAskSet({
15
- title: "Tighten the auth guard",
16
- files: [{ path: "src/auth.ts", hunks: [
17
- { id: "h1", header: "@@ active check @@", before: "if (u)", after: "if (u && u.active)" },
18
- ] }],
19
- });
20
- // → feed askSet to any surface: the MCP `elicit` tool, HTTP /elicit, or the CLI.
9
+ ```sh
10
+ npm i @elicitkit/pack-pr-review
21
11
  ```
22
12
 
23
- Pure (no I/O, no MCP) — the same AskSet works through every Elicitkit
24
- surface. Wire your VCS/diff source to the `files` input; everything else
25
- is the spec.
13
+ ## Links
14
+
15
+ - Repository & docs: https://github.com/elicitkit/elicitkit
16
+ - Spec: https://github.com/elicitkit/elicitkit/blob/main/packages/spec/SPEC.md
17
+ - License: Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elicitkit/pack-pr-review",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Elicitkit flagship pack — turn a pull request into a structured per-hunk review AskSet (the v0.1 wedge).",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -17,7 +17,7 @@
17
17
  "pack.json"
18
18
  ],
19
19
  "devDependencies": {
20
- "@elicitkit/core": "0.1.1"
20
+ "@elicitkit/core": "0.1.2"
21
21
  },
22
22
  "publishConfig": {
23
23
  "access": "public"