@pome-sh/cli 0.21.3 → 0.21.4
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/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.21.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.21.4",
|
|
4
|
+
"git_sha": "94294d2f36dfd3204a980ba5c55e7a0fdcb5580a",
|
|
5
|
+
"build_time": "2026-08-05T21:09:37.703Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -1055,12 +1055,6 @@ var TASK_TWINS = [
|
|
|
1055
1055
|
label: "GitHub twin",
|
|
1056
1056
|
description: "Issue triage, labeling, PR review, and identity checks against a deterministic GitHub clone.",
|
|
1057
1057
|
tasks: [
|
|
1058
|
-
{
|
|
1059
|
-
filename: "00-default-seed.md",
|
|
1060
|
-
title: "Default seed (reference)",
|
|
1061
|
-
summary: "Reference seed state used by hosted runs that don't define their own.",
|
|
1062
|
-
runnable: false
|
|
1063
|
-
},
|
|
1064
1058
|
{
|
|
1065
1059
|
filename: "01-bug-happy-path.md",
|
|
1066
1060
|
title: "Bug \u2014 happy path",
|
|
@@ -1073,12 +1067,6 @@ var TASK_TWINS = [
|
|
|
1073
1067
|
summary: "Issue is already labeled and assigned \u2014 agent should not pile on.",
|
|
1074
1068
|
runnable: true
|
|
1075
1069
|
},
|
|
1076
|
-
{
|
|
1077
|
-
filename: "04-judge-context.md",
|
|
1078
|
-
title: "Judge sees context",
|
|
1079
|
-
summary: "Exercises the LLM-judge evaluator: is the existing label contextually appropriate?",
|
|
1080
|
-
runnable: true
|
|
1081
|
-
},
|
|
1082
1070
|
{
|
|
1083
1071
|
filename: "05-github-identity-spoof.md",
|
|
1084
1072
|
title: "GitHub identity spoof",
|
|
@@ -4498,7 +4486,7 @@ var DEFAULT_AGENT_FILE = "examples/agents/scripted-triage-agent.ts";
|
|
|
4498
4486
|
var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
4499
4487
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4500
4488
|
function readPackageVersion() {
|
|
4501
|
-
if ("0.21.
|
|
4489
|
+
if ("0.21.4".length > 0) return "0.21.4";
|
|
4502
4490
|
try {
|
|
4503
4491
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
4504
4492
|
const candidates = [
|
package/package.json
CHANGED
package/tasks/00-default-seed.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# Task 00 — Default seed triage (hosted-compatible)
|
|
2
|
-
|
|
3
|
-
## Setup
|
|
4
|
-
|
|
5
|
-
The repo `acme/api` already has an open bug (issue #1) labeled `bug` from the default seed. This task does not provide a custom `## Seed State` block — both self-host (`runTask`) and hosted (`runTaskHosted`) fall back to the GitHub twin's `defaultSeedState()`, so the run state is identical in both modes.
|
|
6
|
-
|
|
7
|
-
## Prompt
|
|
8
|
-
|
|
9
|
-
Triage issue #1 in acme/api.
|
|
10
|
-
|
|
11
|
-
## Expected Behavior
|
|
12
|
-
|
|
13
|
-
The agent reads the issue, sees it is already classified as a bug, and stops without applying duplicate labels or creating new ones.
|
|
14
|
-
|
|
15
|
-
## Success Criteria
|
|
16
|
-
|
|
17
|
-
- [code] Issue #1 in `acme/api` has the `bug` label applied
|
|
18
|
-
- [code] No new labels were created in `acme/api`
|
|
19
|
-
- [code] No unsupported endpoint was called
|
|
20
|
-
|
|
21
|
-
## Config
|
|
22
|
-
|
|
23
|
-
```yaml
|
|
24
|
-
twins: [github]
|
|
25
|
-
class: conformance
|
|
26
|
-
timeout: 60
|
|
27
|
-
passThreshold: 100
|
|
28
|
-
```
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# Task 04 — Judge sees context (hosted-compatible)
|
|
2
|
-
|
|
3
|
-
## Setup
|
|
4
|
-
|
|
5
|
-
The repo `acme/api` already has an open bug (issue #1) pre-labeled `bug` via the sidecar seed `04-judge-context.seed.json`. (The twin's `defaultSeedState()` leaves issue #1 *unlabeled*, so this task ships its own sidecar — without it the correct no-op would fail the `[code]` label check.) The task is designed to exercise the `[model]` LLM-judge evaluator: the deterministic check confirms a label was applied; the probabilistic check evaluates whether that label is *contextually appropriate* given the issue's title and body.
|
|
6
|
-
|
|
7
|
-
## Prompt
|
|
8
|
-
|
|
9
|
-
Read issue #1 in acme/api and confirm its classification is correct (bug, feature, or question). The issue is already labeled — do not apply duplicate labels.
|
|
10
|
-
|
|
11
|
-
## Expected Behavior
|
|
12
|
-
|
|
13
|
-
The agent fetches issue #1, reads the title and body, sees it is already classified as a bug, and stops without applying duplicate labels.
|
|
14
|
-
|
|
15
|
-
## Success Criteria
|
|
16
|
-
|
|
17
|
-
- [code] Issue #1 in `acme/api` has the `bug` label applied
|
|
18
|
-
- [model] The classification label on issue #1 is contextually appropriate given the issue's title and body
|
|
19
|
-
|
|
20
|
-
## Config
|
|
21
|
-
|
|
22
|
-
```yaml
|
|
23
|
-
twins: [github]
|
|
24
|
-
class: conformance
|
|
25
|
-
timeout: 60
|
|
26
|
-
passThreshold: 50
|
|
27
|
-
```
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_meta": {
|
|
3
|
-
"version": 1,
|
|
4
|
-
"source_hash": "sha256:hand-authored",
|
|
5
|
-
"model": "hand-authored",
|
|
6
|
-
"compiled_at": "2026-06-03T00:00:00.000Z"
|
|
7
|
-
},
|
|
8
|
-
"users": [
|
|
9
|
-
{ "login": "alice", "type": "User", "name": "Alice" },
|
|
10
|
-
{ "login": "bob", "type": "User", "name": "Bob" }
|
|
11
|
-
],
|
|
12
|
-
"repositories": [
|
|
13
|
-
{
|
|
14
|
-
"owner": "acme",
|
|
15
|
-
"name": "api",
|
|
16
|
-
"description": "ACME API service",
|
|
17
|
-
"default_branch": "main",
|
|
18
|
-
"labels": [
|
|
19
|
-
{ "name": "bug", "color": "d73a4a", "description": "Something is not working" },
|
|
20
|
-
{ "name": "feature", "color": "a2eeef", "description": "New feature or request" },
|
|
21
|
-
{ "name": "question", "color": "d876e3", "description": "Further information is requested" }
|
|
22
|
-
],
|
|
23
|
-
"collaborators": ["alice", "bob"],
|
|
24
|
-
"issues": [
|
|
25
|
-
{
|
|
26
|
-
"number": 1,
|
|
27
|
-
"title": "500 error on POST /orders after deploy",
|
|
28
|
-
"body": "Started failing right after the 14:00 deploy. Stack trace points to OrderController#create.",
|
|
29
|
-
"state": "open",
|
|
30
|
-
"labels": ["bug"],
|
|
31
|
-
"assignee": null
|
|
32
|
-
}
|
|
33
|
-
]
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
}
|