@pome-sh/cli 0.8.0 → 0.10.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/dist/build-info.json +3 -3
- package/dist/src/cli/agent-identity.js +7 -2
- package/dist/src/cli/agent-resolver.d.ts +3 -0
- package/dist/src/cli/agent-resolver.js +10 -0
- package/dist/src/cli/checks-add.d.ts +32 -0
- package/dist/src/cli/checks-add.js +236 -0
- package/dist/src/cli/checks.d.ts +21 -0
- package/dist/src/cli/checks.js +150 -0
- package/dist/src/cli/compile-seeds.js +51 -5
- package/dist/src/cli/main.js +49 -11
- package/dist/src/cli/project-config.d.ts +8 -0
- package/dist/src/cli/project-config.js +18 -0
- package/dist/src/cli/register.d.ts +15 -0
- package/dist/src/cli/register.js +26 -3
- package/dist/src/cli/session.d.ts +10 -0
- package/dist/src/cli/session.js +28 -2
- package/dist/src/fix-prompt/index.d.ts +1 -1
- package/dist/src/fix-prompt/index.js +2 -2
- package/dist/src/fix-prompt/prompt.d.ts +2 -2
- package/dist/src/fix-prompt/prompt.js +9 -9
- package/dist/src/hosted/client.d.ts +8 -2
- package/dist/src/hosted/client.js +108 -26
- package/dist/src/hosted/errors.d.ts +14 -0
- package/dist/src/hosted/errors.js +22 -0
- package/dist/src/hosted/evalResultCache.d.ts +4 -4
- package/dist/src/hosted/evalResultCache.js +10 -3
- package/dist/src/recorder/artifacts.d.ts +1 -1
- package/dist/src/recorder/artifacts.js +8 -1
- package/dist/src/runner/runTask.d.ts +10 -10
- package/dist/src/runner/runTaskHosted.js +9 -2
- package/dist/src/runner/runTrialGroup.js +4 -1
- package/dist/src/task/insertCriterion.d.ts +15 -0
- package/dist/src/task/insertCriterion.js +62 -0
- package/dist/src/task/parseTask.d.ts +5 -0
- package/dist/src/task/parseTask.js +11 -0
- package/dist/src/task/taskSchema.d.ts +4 -4
- package/node_modules/@pome-sh/sdk/dist/checks.d.ts +54 -0
- package/node_modules/@pome-sh/sdk/dist/checks.js +143 -0
- package/node_modules/@pome-sh/sdk/dist/checks.js.map +1 -0
- package/node_modules/@pome-sh/sdk/package.json +7 -3
- package/node_modules/@pome-sh/twin-github/dist/src/access-control.d.ts +3 -3
- package/node_modules/@pome-sh/twin-github/dist/src/checks.d.ts +21 -0
- package/node_modules/@pome-sh/twin-github/dist/src/checks.js +90 -0
- package/node_modules/@pome-sh/twin-github/dist/src/checks.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/checks.d.ts +153 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/checks.js +66 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/checks.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/git.d.ts +567 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/git.js +198 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/git.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/{domain.d.ts → domain/github-domain.d.ts} +340 -71
- package/node_modules/@pome-sh/twin-github/dist/src/domain/github-domain.js +794 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/github-domain.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/helpers.d.ts +5 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/helpers.js +15 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/helpers.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/index.d.ts +2 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/index.js +5 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/index.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/issues.d.ts +545 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/issues.js +272 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/issues.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/pulls.d.ts +816 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/pulls.js +256 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/pulls.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/releases.d.ts +160 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/releases.js +63 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/releases.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/repos.d.ts +219 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/repos.js +131 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/repos.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/search.d.ts +252 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/search.js +83 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/search.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/types.d.ts +15 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/types.js +2 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain/types.js.map +1 -0
- package/node_modules/@pome-sh/twin-github/dist/src/index.d.ts +2 -1
- package/node_modules/@pome-sh/twin-github/dist/src/index.js +1 -1
- package/node_modules/@pome-sh/twin-github/dist/src/index.js.map +1 -1
- package/node_modules/@pome-sh/twin-github/dist/src/routes.d.ts +1 -1
- package/node_modules/@pome-sh/twin-github/dist/src/seed.d.ts +1 -1
- package/node_modules/@pome-sh/twin-github/dist/src/serializers.d.ts +3 -3
- package/node_modules/@pome-sh/twin-github/dist/src/tools.d.ts +188 -188
- package/node_modules/@pome-sh/twin-github/dist/src/twin.d.ts +1 -1
- package/node_modules/@pome-sh/twin-github/dist/src/twin.js +1 -1
- package/node_modules/@pome-sh/twin-github/dist/src/twin.js.map +1 -1
- package/node_modules/@pome-sh/twin-github/package.json +4 -4
- package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/package.json +2 -2
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +35 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/admin-gate.js +103 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/auth.d.ts +100 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/auth.js +262 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/auth.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/build-info.d.ts +7 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/build-info.js +14 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/build-info.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/db.d.ts +44 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/db.js +113 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/db.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/errors.d.ts +24 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/errors.js +61 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/errors.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +43 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/failure-injection.js +160 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +121 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +204 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +8 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity.js +39 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/index.d.ts +372 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/index.js +139 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/index.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +10 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +221 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/parity.d.ts +61 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/parity.js +123 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/parity.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/recorder.d.ts +120 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/recorder.js +368 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/recorder.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/redaction.d.ts +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/redaction.js +3 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/redaction.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +54 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server-helpers.js +181 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server.d.ts +46 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server.js +394 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +8 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/tool-context.js +22 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/tool-context.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/package.json +54 -0
- package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/index.d.ts +1 -0
- package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/index.js +1 -0
- package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/index.js.map +1 -1
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/manifest.d.ts +31 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/manifest.js +76 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/manifest.js.map +1 -0
- package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/rest.d.ts +9 -0
- package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/rest.js +27 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/rest.js.map +1 -0
- package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/manifest-schema.json +68 -0
- package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/package.json +2 -1
- package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/trace-contract.json +1 -1
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +35 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.js +103 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.d.ts +100 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.js +262 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.d.ts +7 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.js +14 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.d.ts +44 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.js +113 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.d.ts +24 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.js +61 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +43 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.js +160 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +121 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +204 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +8 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.js +39 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.d.ts +372 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.js +139 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +10 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +221 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.d.ts +61 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.js +123 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.d.ts +120 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.js +368 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.d.ts +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.js +3 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +54 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.js +181 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.d.ts +46 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.js +394 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +8 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.js +22 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.js.map +1 -0
- package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/package.json +54 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +35 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.js +103 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.d.ts +100 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.js +262 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.d.ts +7 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.js +14 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.d.ts +44 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.js +113 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.d.ts +24 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.js +61 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +43 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.js +160 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +121 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +204 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +8 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.js +39 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.d.ts +372 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.js +139 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +10 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +221 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.d.ts +61 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.js +123 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.d.ts +120 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.js +368 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.d.ts +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.js +3 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +54 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.js +181 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.d.ts +46 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.js +394 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +8 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.js +22 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.js.map +1 -0
- package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/package.json +54 -0
- package/package.json +3 -3
- package/tasks/00-default-seed.md +1 -1
- package/tasks/01-bug-happy-path.md +1 -1
- package/tasks/03-already-triaged.md +1 -1
- package/tasks/06-mislabeled-needs-fix.md +1 -1
- package/tasks/17-in-scope-injection.md +1 -1
- package/node_modules/@pome-sh/twin-github/dist/src/domain.js +0 -0
- package/node_modules/@pome-sh/twin-github/dist/src/domain.js.map +0 -1
- package/node_modules/@pome-sh/twin-github/node_modules/@pome-sh/shared-types/dist/rest.js.map +0 -1
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/admin-gate.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/auth.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/auth.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/auth.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/build-info.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/build-info.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/build-info.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/db.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/db.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/db.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/errors.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/errors.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/errors.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/failure-injection.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/index.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/index.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/index.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/parity.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/parity.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/parity.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/recorder.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/recorder.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/recorder.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/redaction.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/redaction.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/redaction.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server-helpers.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/tool-context.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/tool-context.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/errors.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/errors.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/errors.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/github-access-control.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/github-access-control.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/github-access-control.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/identity.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/identity.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/identity.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/index.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/index.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/index.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/manifest.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/manifest.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/manifest.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/index.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/index.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/index.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/map-span.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/nano.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/nano.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/nano.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/project.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/project.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/project.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/semconv.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/span-event.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/recorder-events.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/recorder-events.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/recorder-events.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/redaction.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/redaction.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/redaction.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/rest.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/rest.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/rest.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/run.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/run.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/run.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-envelope.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-state.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-state.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-state.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/sessions.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/sessions.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/sessions.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task-vocab.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task-vocab.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task-vocab.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task.d.ts +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task.js +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task.js.map +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/manifest-schema.json +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/package.json +0 -0
- /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/trace-contract.json +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/errors.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/errors.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/errors.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/github-access-control.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/github-access-control.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/github-access-control.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/identity.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/identity.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/identity.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/index.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/index.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/index.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/map-span.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/nano.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/nano.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/nano.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/project.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/project.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/project.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/semconv.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/span-event.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/recorder-events.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/recorder-events.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/recorder-events.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/redaction.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/redaction.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/redaction.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/run.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/run.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/run.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-envelope.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-state.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-state.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-state.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/sessions.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/sessions.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/sessions.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task-vocab.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task-vocab.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task-vocab.js.map +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task.d.ts +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task.js +0 -0
- /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task.js.map +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import type { StateDelta } from "@pome-sh/shared-types";
|
|
3
|
-
import type { GitHubDomain } from "./domain.js";
|
|
3
|
+
import type { GitHubDomain } from "./domain/index.js";
|
|
4
4
|
export type ToolExecutionOptions = {
|
|
5
5
|
actor?: string;
|
|
6
6
|
};
|
|
@@ -596,9 +596,9 @@ export declare const toolDefinitions: readonly [{
|
|
|
596
596
|
sha: z.ZodString;
|
|
597
597
|
state: z.ZodEnum<{
|
|
598
598
|
error: "error";
|
|
599
|
-
success: "success";
|
|
600
599
|
failure: "failure";
|
|
601
600
|
pending: "pending";
|
|
601
|
+
success: "success";
|
|
602
602
|
}>;
|
|
603
603
|
context: z.ZodOptional<z.ZodString>;
|
|
604
604
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -624,17 +624,17 @@ export declare const toolDefinitions: readonly [{
|
|
|
624
624
|
headSha: z.ZodOptional<z.ZodString>;
|
|
625
625
|
status: z.ZodOptional<z.ZodEnum<{
|
|
626
626
|
queued: "queued";
|
|
627
|
-
completed: "completed";
|
|
628
627
|
in_progress: "in_progress";
|
|
628
|
+
completed: "completed";
|
|
629
629
|
}>>;
|
|
630
630
|
conclusion: z.ZodOptional<z.ZodEnum<{
|
|
631
|
-
success: "success";
|
|
632
|
-
skipped: "skipped";
|
|
633
631
|
failure: "failure";
|
|
632
|
+
success: "success";
|
|
634
633
|
neutral: "neutral";
|
|
635
634
|
cancelled: "cancelled";
|
|
636
635
|
timed_out: "timed_out";
|
|
637
636
|
action_required: "action_required";
|
|
637
|
+
skipped: "skipped";
|
|
638
638
|
stale: "stale";
|
|
639
639
|
}>>;
|
|
640
640
|
details_url: z.ZodOptional<z.ZodString>;
|
|
@@ -716,8 +716,8 @@ export declare const toolDefinitions: readonly [{
|
|
|
716
716
|
username: z.ZodString;
|
|
717
717
|
permission: z.ZodOptional<z.ZodEnum<{
|
|
718
718
|
push: "push";
|
|
719
|
-
admin: "admin";
|
|
720
719
|
pull: "pull";
|
|
720
|
+
admin: "admin";
|
|
721
721
|
maintain: "maintain";
|
|
722
722
|
triage: "triage";
|
|
723
723
|
}>>;
|
|
@@ -755,7 +755,7 @@ export declare const toolDefinitions: readonly [{
|
|
|
755
755
|
}];
|
|
756
756
|
export type ToolName = (typeof toolDefinitions)[number]["name"];
|
|
757
757
|
export declare function listTools(): {
|
|
758
|
-
name: "
|
|
758
|
+
name: "create_commit_status" | "create_check_run" | "create_or_update_file" | "push_files" | "create_branch" | "delete_branch" | "delete_file" | "create_issue" | "update_issue" | "add_issue_comment" | "create_label" | "add_issue_labels" | "add_assignees" | "update_issue_comment" | "delete_issue_comment" | "create_milestone" | "update_milestone" | "delete_milestone" | "create_pull_request" | "create_pull_request_review" | "merge_pull_request" | "update_pull_request_branch" | "update_pull_request" | "create_pull_request_review_comment" | "add_reply_to_pull_request_comment" | "create_release" | "create_repository" | "fork_repository" | "add_collaborator" | "search_repositories" | "get_repository" | "search_code" | "search_users" | "get_file_contents" | "list_commits" | "get_issue" | "search_issues" | "list_issues" | "list_issue_comments" | "list_repository_labels" | "list_issue_labels" | "remove_issue_label" | "list_collaborators" | "get_pull_request" | "get_pull_request_reviews" | "get_pull_request_comments" | "get_pull_request_files" | "get_pull_request_status" | "list_pull_requests" | "list_branches" | "get_branch" | "get_commit" | "compare_commits" | "get_pull_request_diff" | "get_pull_request_commits" | "list_milestones" | "get_combined_status_for_ref" | "list_check_runs_for_ref" | "list_tags" | "list_releases" | "get_latest_release" | "get_me" | "search_commits" | "get_release_by_tag" | "get_tag";
|
|
759
759
|
description: "Search local repositories by name or description." | "Create a repository with an initial README and main branch." | "Fork a repository into the current user or an organization." | "Get one repository." | "Search files in the local GitHub twin." | "Search seeded users and organizations." | "Read a file or directory from a repository branch." | "List commits for a repository." | "Create or update one file and advance the branch head atomically." | "Create a branch from an existing branch or SHA." | "Push multiple files in a single commit." | "Get one issue." | "Update an issue title, body, state, labels, or assignees." | "Search all local issues." | "List repository issues with common filters." | "Add an issue comment." | "List comments on an issue." | "Create an issue." | "List labels defined on a repository." | "Create a repository label." | "List labels applied to an issue." | "Apply one or more labels to an issue." | "Remove one label from an issue." | "List repository collaborators." | "Add assignees to an issue." | "Get one pull request." | "List pull request reviews." | "Create a pull request review." | "List review comments on a pull request." | "List files changed by a pull request." | "Get combined status for a pull request head commit." | "List repository pull requests." | "Merge a pull request using simplified local merge semantics." | "Update a PR branch from its base branch." | "Create a pull request from a head branch to a base branch." | "List branches for a repository." | "Get one branch by name." | "Delete a branch (cannot delete the default branch or a branch backing an open PR)." | "Delete one file and advance the branch head atomically." | "Get one commit with its file changes and stats." | "Compare two commits, branches, or tags. Returns ahead/behind/identical/diverged." | "Get a unified-diff-style text representation of a pull request." | "Update a pull request title, body, state, or base branch." | "List commits on a pull request, oldest first." | "Create an inline review comment on a pull request at a file path and line." | "Reply to an existing pull request review comment." | "Update the body of an existing issue comment." | "Delete an issue comment by ID." | "List milestones for a repository." | "Create a milestone." | "Update a milestone." | "Delete a milestone." | "Create a commit status (pending/success/failure/error) on a commit SHA." | "Get the combined status for a ref (SHA, branch, or tag)." | "Create a check run on a commit SHA." | "List check runs for a ref (SHA, branch, or tag)." | "List tags for a repository, most recent first." | "List releases for a repository, most recent first." | "Get the latest published (non-draft, non-prerelease) release." | "Create a release. Auto-creates the tag if it doesn't exist." | "Get the authenticated user." | "Add a collaborator to a repository. Returns 201 + invitation envelope for new users, 204 when already a collaborator." | "Search commits on repository default branches by message or author." | "Get a release by its tag name." | "Get a tag by name, including the commit it points at.";
|
|
760
760
|
input_schema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
761
761
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -1138,9 +1138,9 @@ export declare function listTools(): {
|
|
|
1138
1138
|
sha: z.ZodString;
|
|
1139
1139
|
state: z.ZodEnum<{
|
|
1140
1140
|
error: "error";
|
|
1141
|
-
success: "success";
|
|
1142
1141
|
failure: "failure";
|
|
1143
1142
|
pending: "pending";
|
|
1143
|
+
success: "success";
|
|
1144
1144
|
}>;
|
|
1145
1145
|
context: z.ZodOptional<z.ZodString>;
|
|
1146
1146
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1158,17 +1158,17 @@ export declare function listTools(): {
|
|
|
1158
1158
|
headSha: z.ZodOptional<z.ZodString>;
|
|
1159
1159
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1160
1160
|
queued: "queued";
|
|
1161
|
-
completed: "completed";
|
|
1162
1161
|
in_progress: "in_progress";
|
|
1162
|
+
completed: "completed";
|
|
1163
1163
|
}>>;
|
|
1164
1164
|
conclusion: z.ZodOptional<z.ZodEnum<{
|
|
1165
|
-
success: "success";
|
|
1166
|
-
skipped: "skipped";
|
|
1167
1165
|
failure: "failure";
|
|
1166
|
+
success: "success";
|
|
1168
1167
|
neutral: "neutral";
|
|
1169
1168
|
cancelled: "cancelled";
|
|
1170
1169
|
timed_out: "timed_out";
|
|
1171
1170
|
action_required: "action_required";
|
|
1171
|
+
skipped: "skipped";
|
|
1172
1172
|
stale: "stale";
|
|
1173
1173
|
}>>;
|
|
1174
1174
|
details_url: z.ZodOptional<z.ZodString>;
|
|
@@ -1222,8 +1222,8 @@ export declare function listTools(): {
|
|
|
1222
1222
|
username: z.ZodString;
|
|
1223
1223
|
permission: z.ZodOptional<z.ZodEnum<{
|
|
1224
1224
|
push: "push";
|
|
1225
|
-
admin: "admin";
|
|
1226
1225
|
pull: "pull";
|
|
1226
|
+
admin: "admin";
|
|
1227
1227
|
maintain: "maintain";
|
|
1228
1228
|
triage: "triage";
|
|
1229
1229
|
}>>;
|
|
@@ -1248,7 +1248,7 @@ export declare function listTools(): {
|
|
|
1248
1248
|
}, z.core.$strip>>;
|
|
1249
1249
|
}[];
|
|
1250
1250
|
export declare function listToolsForMcp(): {
|
|
1251
|
-
name: "
|
|
1251
|
+
name: "create_commit_status" | "create_check_run" | "create_or_update_file" | "push_files" | "create_branch" | "delete_branch" | "delete_file" | "create_issue" | "update_issue" | "add_issue_comment" | "create_label" | "add_issue_labels" | "add_assignees" | "update_issue_comment" | "delete_issue_comment" | "create_milestone" | "update_milestone" | "delete_milestone" | "create_pull_request" | "create_pull_request_review" | "merge_pull_request" | "update_pull_request_branch" | "update_pull_request" | "create_pull_request_review_comment" | "add_reply_to_pull_request_comment" | "create_release" | "create_repository" | "fork_repository" | "add_collaborator" | "search_repositories" | "get_repository" | "search_code" | "search_users" | "get_file_contents" | "list_commits" | "get_issue" | "search_issues" | "list_issues" | "list_issue_comments" | "list_repository_labels" | "list_issue_labels" | "remove_issue_label" | "list_collaborators" | "get_pull_request" | "get_pull_request_reviews" | "get_pull_request_comments" | "get_pull_request_files" | "get_pull_request_status" | "list_pull_requests" | "list_branches" | "get_branch" | "get_commit" | "compare_commits" | "get_pull_request_diff" | "get_pull_request_commits" | "list_milestones" | "get_combined_status_for_ref" | "list_check_runs_for_ref" | "list_tags" | "list_releases" | "get_latest_release" | "get_me" | "search_commits" | "get_release_by_tag" | "get_tag";
|
|
1252
1252
|
description: "Search local repositories by name or description." | "Create a repository with an initial README and main branch." | "Fork a repository into the current user or an organization." | "Get one repository." | "Search files in the local GitHub twin." | "Search seeded users and organizations." | "Read a file or directory from a repository branch." | "List commits for a repository." | "Create or update one file and advance the branch head atomically." | "Create a branch from an existing branch or SHA." | "Push multiple files in a single commit." | "Get one issue." | "Update an issue title, body, state, labels, or assignees." | "Search all local issues." | "List repository issues with common filters." | "Add an issue comment." | "List comments on an issue." | "Create an issue." | "List labels defined on a repository." | "Create a repository label." | "List labels applied to an issue." | "Apply one or more labels to an issue." | "Remove one label from an issue." | "List repository collaborators." | "Add assignees to an issue." | "Get one pull request." | "List pull request reviews." | "Create a pull request review." | "List review comments on a pull request." | "List files changed by a pull request." | "Get combined status for a pull request head commit." | "List repository pull requests." | "Merge a pull request using simplified local merge semantics." | "Update a PR branch from its base branch." | "Create a pull request from a head branch to a base branch." | "List branches for a repository." | "Get one branch by name." | "Delete a branch (cannot delete the default branch or a branch backing an open PR)." | "Delete one file and advance the branch head atomically." | "Get one commit with its file changes and stats." | "Compare two commits, branches, or tags. Returns ahead/behind/identical/diverged." | "Get a unified-diff-style text representation of a pull request." | "Update a pull request title, body, state, or base branch." | "List commits on a pull request, oldest first." | "Create an inline review comment on a pull request at a file path and line." | "Reply to an existing pull request review comment." | "Update the body of an existing issue comment." | "Delete an issue comment by ID." | "List milestones for a repository." | "Create a milestone." | "Update a milestone." | "Delete a milestone." | "Create a commit status (pending/success/failure/error) on a commit SHA." | "Get the combined status for a ref (SHA, branch, or tag)." | "Create a check run on a commit SHA." | "List check runs for a ref (SHA, branch, or tag)." | "List tags for a repository, most recent first." | "List releases for a repository, most recent first." | "Get the latest published (non-draft, non-prerelease) release." | "Create a release. Auto-creates the tag if it doesn't exist." | "Get the authenticated user." | "Add a collaborator to a repository. Returns 201 + invitation envelope for new users, 204 when already a collaborator." | "Search commits on repository default branches by message or author." | "Get a release by its tag name." | "Get a tag by name, including the commit it points at.";
|
|
1253
1253
|
inputSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
1254
1254
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -1631,9 +1631,9 @@ export declare function listToolsForMcp(): {
|
|
|
1631
1631
|
sha: z.ZodString;
|
|
1632
1632
|
state: z.ZodEnum<{
|
|
1633
1633
|
error: "error";
|
|
1634
|
-
success: "success";
|
|
1635
1634
|
failure: "failure";
|
|
1636
1635
|
pending: "pending";
|
|
1636
|
+
success: "success";
|
|
1637
1637
|
}>;
|
|
1638
1638
|
context: z.ZodOptional<z.ZodString>;
|
|
1639
1639
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1651,17 +1651,17 @@ export declare function listToolsForMcp(): {
|
|
|
1651
1651
|
headSha: z.ZodOptional<z.ZodString>;
|
|
1652
1652
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1653
1653
|
queued: "queued";
|
|
1654
|
-
completed: "completed";
|
|
1655
1654
|
in_progress: "in_progress";
|
|
1655
|
+
completed: "completed";
|
|
1656
1656
|
}>>;
|
|
1657
1657
|
conclusion: z.ZodOptional<z.ZodEnum<{
|
|
1658
|
-
success: "success";
|
|
1659
|
-
skipped: "skipped";
|
|
1660
1658
|
failure: "failure";
|
|
1659
|
+
success: "success";
|
|
1661
1660
|
neutral: "neutral";
|
|
1662
1661
|
cancelled: "cancelled";
|
|
1663
1662
|
timed_out: "timed_out";
|
|
1664
1663
|
action_required: "action_required";
|
|
1664
|
+
skipped: "skipped";
|
|
1665
1665
|
stale: "stale";
|
|
1666
1666
|
}>>;
|
|
1667
1667
|
details_url: z.ZodOptional<z.ZodString>;
|
|
@@ -1715,8 +1715,8 @@ export declare function listToolsForMcp(): {
|
|
|
1715
1715
|
username: z.ZodString;
|
|
1716
1716
|
permission: z.ZodOptional<z.ZodEnum<{
|
|
1717
1717
|
push: "push";
|
|
1718
|
-
admin: "admin";
|
|
1719
1718
|
pull: "pull";
|
|
1719
|
+
admin: "admin";
|
|
1720
1720
|
maintain: "maintain";
|
|
1721
1721
|
triage: "triage";
|
|
1722
1722
|
}>>;
|
|
@@ -1892,7 +1892,7 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
1892
1892
|
} | {
|
|
1893
1893
|
id: number;
|
|
1894
1894
|
node_id: string;
|
|
1895
|
-
state: "error" | "
|
|
1895
|
+
state: "error" | "failure" | "pending" | "success";
|
|
1896
1896
|
description: string;
|
|
1897
1897
|
target_url: string;
|
|
1898
1898
|
context: string;
|
|
@@ -1906,7 +1906,7 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
1906
1906
|
statuses: {
|
|
1907
1907
|
id: number;
|
|
1908
1908
|
node_id: string;
|
|
1909
|
-
state: "error" | "
|
|
1909
|
+
state: "error" | "failure" | "pending" | "success";
|
|
1910
1910
|
description: string;
|
|
1911
1911
|
target_url: string;
|
|
1912
1912
|
context: string;
|
|
@@ -2015,7 +2015,7 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
2015
2015
|
url: string;
|
|
2016
2016
|
html_url: string;
|
|
2017
2017
|
details_url: string;
|
|
2018
|
-
status: "queued" | "
|
|
2018
|
+
status: "queued" | "in_progress" | "completed";
|
|
2019
2019
|
conclusion: import("./upstream-types.js").CheckRun["conclusion"];
|
|
2020
2020
|
started_at: string;
|
|
2021
2021
|
completed_at: string | null;
|
|
@@ -2310,89 +2310,29 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
2310
2310
|
site_admin: false;
|
|
2311
2311
|
} | {
|
|
2312
2312
|
total_count: number;
|
|
2313
|
-
|
|
2314
|
-
items: {
|
|
2315
|
-
parent?: {
|
|
2316
|
-
full_name: string;
|
|
2317
|
-
};
|
|
2313
|
+
check_runs: {
|
|
2318
2314
|
id: number;
|
|
2319
2315
|
node_id: string;
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
owner: {
|
|
2323
|
-
login: string;
|
|
2324
|
-
id: number;
|
|
2325
|
-
node_id: string;
|
|
2326
|
-
avatar_url: string;
|
|
2327
|
-
html_url: string;
|
|
2328
|
-
type: "User" | "Organization";
|
|
2329
|
-
site_admin: false;
|
|
2330
|
-
};
|
|
2331
|
-
private: boolean;
|
|
2332
|
-
html_url: string;
|
|
2333
|
-
description: string;
|
|
2334
|
-
fork: boolean;
|
|
2335
|
-
url: string;
|
|
2336
|
-
contents_url: string;
|
|
2337
|
-
issues_url: string;
|
|
2338
|
-
pulls_url: string;
|
|
2339
|
-
default_branch: string;
|
|
2340
|
-
created_at: string;
|
|
2341
|
-
updated_at: string;
|
|
2342
|
-
pushed_at: string;
|
|
2343
|
-
}[];
|
|
2344
|
-
} | {
|
|
2345
|
-
total_count: number;
|
|
2346
|
-
incomplete_results: boolean;
|
|
2347
|
-
items: {
|
|
2348
|
-
name: string | undefined;
|
|
2349
|
-
path: string;
|
|
2350
|
-
sha: string;
|
|
2316
|
+
head_sha: string;
|
|
2317
|
+
external_id: string;
|
|
2351
2318
|
url: string;
|
|
2352
|
-
git_url: string;
|
|
2353
2319
|
html_url: string;
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
node_id: string;
|
|
2366
|
-
avatar_url: string;
|
|
2367
|
-
html_url: string;
|
|
2368
|
-
type: "User" | "Organization";
|
|
2369
|
-
site_admin: false;
|
|
2370
|
-
};
|
|
2371
|
-
private: boolean;
|
|
2372
|
-
html_url: string;
|
|
2373
|
-
description: string;
|
|
2374
|
-
fork: boolean;
|
|
2375
|
-
url: string;
|
|
2376
|
-
contents_url: string;
|
|
2377
|
-
issues_url: string;
|
|
2378
|
-
pulls_url: string;
|
|
2379
|
-
default_branch: string;
|
|
2380
|
-
created_at: string;
|
|
2381
|
-
updated_at: string;
|
|
2382
|
-
pushed_at: string;
|
|
2320
|
+
details_url: string;
|
|
2321
|
+
status: "queued" | "in_progress" | "completed";
|
|
2322
|
+
conclusion: import("./upstream-types.js").CheckRun["conclusion"];
|
|
2323
|
+
started_at: string;
|
|
2324
|
+
completed_at: string | null;
|
|
2325
|
+
output: {
|
|
2326
|
+
title: string | null;
|
|
2327
|
+
summary: string | null;
|
|
2328
|
+
text: null;
|
|
2329
|
+
annotations_count: number;
|
|
2330
|
+
annotations_url: string;
|
|
2383
2331
|
};
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
items: {
|
|
2389
|
-
login: string;
|
|
2390
|
-
id: number;
|
|
2391
|
-
node_id: string;
|
|
2392
|
-
avatar_url: string;
|
|
2393
|
-
html_url: string;
|
|
2394
|
-
type: "User" | "Organization";
|
|
2395
|
-
site_admin: false;
|
|
2332
|
+
name: string;
|
|
2333
|
+
check_suite: null;
|
|
2334
|
+
app: null;
|
|
2335
|
+
pull_requests: never[];
|
|
2396
2336
|
}[];
|
|
2397
2337
|
} | {
|
|
2398
2338
|
content: {
|
|
@@ -2526,69 +2466,6 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
2526
2466
|
self: string;
|
|
2527
2467
|
};
|
|
2528
2468
|
}[];
|
|
2529
|
-
} | {
|
|
2530
|
-
total_count: number;
|
|
2531
|
-
incomplete_results: boolean;
|
|
2532
|
-
items: {
|
|
2533
|
-
id: number;
|
|
2534
|
-
node_id: string;
|
|
2535
|
-
number: number;
|
|
2536
|
-
title: string;
|
|
2537
|
-
body: string;
|
|
2538
|
-
state: "open" | "closed";
|
|
2539
|
-
locked: false;
|
|
2540
|
-
user: {
|
|
2541
|
-
login: string;
|
|
2542
|
-
id: number;
|
|
2543
|
-
node_id: string;
|
|
2544
|
-
avatar_url: string;
|
|
2545
|
-
html_url: string;
|
|
2546
|
-
type: "User" | "Organization";
|
|
2547
|
-
site_admin: false;
|
|
2548
|
-
};
|
|
2549
|
-
labels: {
|
|
2550
|
-
id: number;
|
|
2551
|
-
node_id: string;
|
|
2552
|
-
url: string;
|
|
2553
|
-
name: string;
|
|
2554
|
-
color: string;
|
|
2555
|
-
default: false;
|
|
2556
|
-
description: string;
|
|
2557
|
-
}[];
|
|
2558
|
-
assignee: {
|
|
2559
|
-
login: string;
|
|
2560
|
-
id: number;
|
|
2561
|
-
node_id: string;
|
|
2562
|
-
avatar_url: string;
|
|
2563
|
-
html_url: string;
|
|
2564
|
-
type: "User" | "Organization";
|
|
2565
|
-
site_admin: false;
|
|
2566
|
-
} | null;
|
|
2567
|
-
assignees: {
|
|
2568
|
-
login: string;
|
|
2569
|
-
id: number;
|
|
2570
|
-
node_id: string;
|
|
2571
|
-
avatar_url: string;
|
|
2572
|
-
html_url: string;
|
|
2573
|
-
type: "User" | "Organization";
|
|
2574
|
-
site_admin: false;
|
|
2575
|
-
}[];
|
|
2576
|
-
comments: number;
|
|
2577
|
-
html_url: string;
|
|
2578
|
-
repository_url: string;
|
|
2579
|
-
labels_url: string;
|
|
2580
|
-
comments_url: string;
|
|
2581
|
-
created_at: string;
|
|
2582
|
-
updated_at: string;
|
|
2583
|
-
closed_at: string | null;
|
|
2584
|
-
}[];
|
|
2585
|
-
} | {
|
|
2586
|
-
sha: string;
|
|
2587
|
-
merged: boolean;
|
|
2588
|
-
message: string;
|
|
2589
|
-
} | {
|
|
2590
|
-
message: string;
|
|
2591
|
-
url: string;
|
|
2592
2469
|
} | {
|
|
2593
2470
|
ok: boolean;
|
|
2594
2471
|
} | {
|
|
@@ -2641,33 +2518,14 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
2641
2518
|
comments_url: string;
|
|
2642
2519
|
};
|
|
2643
2520
|
} | {
|
|
2644
|
-
|
|
2521
|
+
sha: string;
|
|
2522
|
+
merged: boolean;
|
|
2523
|
+
message: string;
|
|
2645
2524
|
} | {
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
head_sha: string;
|
|
2651
|
-
external_id: string;
|
|
2652
|
-
url: string;
|
|
2653
|
-
html_url: string;
|
|
2654
|
-
details_url: string;
|
|
2655
|
-
status: "queued" | "completed" | "in_progress";
|
|
2656
|
-
conclusion: import("./upstream-types.js").CheckRun["conclusion"];
|
|
2657
|
-
started_at: string;
|
|
2658
|
-
completed_at: string | null;
|
|
2659
|
-
output: {
|
|
2660
|
-
title: string | null;
|
|
2661
|
-
summary: string | null;
|
|
2662
|
-
text: null;
|
|
2663
|
-
annotations_count: number;
|
|
2664
|
-
annotations_url: string;
|
|
2665
|
-
};
|
|
2666
|
-
name: string;
|
|
2667
|
-
check_suite: null;
|
|
2668
|
-
app: null;
|
|
2669
|
-
pull_requests: never[];
|
|
2670
|
-
}[];
|
|
2525
|
+
message: string;
|
|
2526
|
+
url: string;
|
|
2527
|
+
} | {
|
|
2528
|
+
diff: string;
|
|
2671
2529
|
} | {
|
|
2672
2530
|
status: number;
|
|
2673
2531
|
body: null;
|
|
@@ -2730,6 +2588,92 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
2730
2588
|
url: string;
|
|
2731
2589
|
html_url: string;
|
|
2732
2590
|
};
|
|
2591
|
+
} | {
|
|
2592
|
+
total_count: number;
|
|
2593
|
+
incomplete_results: boolean;
|
|
2594
|
+
items: {
|
|
2595
|
+
parent?: {
|
|
2596
|
+
full_name: string;
|
|
2597
|
+
};
|
|
2598
|
+
id: number;
|
|
2599
|
+
node_id: string;
|
|
2600
|
+
name: string;
|
|
2601
|
+
full_name: string;
|
|
2602
|
+
owner: {
|
|
2603
|
+
login: string;
|
|
2604
|
+
id: number;
|
|
2605
|
+
node_id: string;
|
|
2606
|
+
avatar_url: string;
|
|
2607
|
+
html_url: string;
|
|
2608
|
+
type: "User" | "Organization";
|
|
2609
|
+
site_admin: false;
|
|
2610
|
+
};
|
|
2611
|
+
private: boolean;
|
|
2612
|
+
html_url: string;
|
|
2613
|
+
description: string;
|
|
2614
|
+
fork: boolean;
|
|
2615
|
+
url: string;
|
|
2616
|
+
contents_url: string;
|
|
2617
|
+
issues_url: string;
|
|
2618
|
+
pulls_url: string;
|
|
2619
|
+
default_branch: string;
|
|
2620
|
+
created_at: string;
|
|
2621
|
+
updated_at: string;
|
|
2622
|
+
pushed_at: string;
|
|
2623
|
+
}[];
|
|
2624
|
+
} | {
|
|
2625
|
+
total_count: number;
|
|
2626
|
+
incomplete_results: boolean;
|
|
2627
|
+
items: {
|
|
2628
|
+
login: string;
|
|
2629
|
+
id: number;
|
|
2630
|
+
node_id: string;
|
|
2631
|
+
avatar_url: string;
|
|
2632
|
+
html_url: string;
|
|
2633
|
+
type: "User" | "Organization";
|
|
2634
|
+
site_admin: false;
|
|
2635
|
+
}[];
|
|
2636
|
+
} | {
|
|
2637
|
+
total_count: number;
|
|
2638
|
+
incomplete_results: boolean;
|
|
2639
|
+
items: {
|
|
2640
|
+
name: string | undefined;
|
|
2641
|
+
path: string;
|
|
2642
|
+
sha: string;
|
|
2643
|
+
url: string;
|
|
2644
|
+
git_url: string;
|
|
2645
|
+
html_url: string;
|
|
2646
|
+
repository: {
|
|
2647
|
+
parent?: {
|
|
2648
|
+
full_name: string;
|
|
2649
|
+
};
|
|
2650
|
+
id: number;
|
|
2651
|
+
node_id: string;
|
|
2652
|
+
name: string;
|
|
2653
|
+
full_name: string;
|
|
2654
|
+
owner: {
|
|
2655
|
+
login: string;
|
|
2656
|
+
id: number;
|
|
2657
|
+
node_id: string;
|
|
2658
|
+
avatar_url: string;
|
|
2659
|
+
html_url: string;
|
|
2660
|
+
type: "User" | "Organization";
|
|
2661
|
+
site_admin: false;
|
|
2662
|
+
};
|
|
2663
|
+
private: boolean;
|
|
2664
|
+
html_url: string;
|
|
2665
|
+
description: string;
|
|
2666
|
+
fork: boolean;
|
|
2667
|
+
url: string;
|
|
2668
|
+
contents_url: string;
|
|
2669
|
+
issues_url: string;
|
|
2670
|
+
pulls_url: string;
|
|
2671
|
+
default_branch: string;
|
|
2672
|
+
created_at: string;
|
|
2673
|
+
updated_at: string;
|
|
2674
|
+
pushed_at: string;
|
|
2675
|
+
};
|
|
2676
|
+
}[];
|
|
2733
2677
|
} | {
|
|
2734
2678
|
total_count: number;
|
|
2735
2679
|
incomplete_results: boolean;
|
|
@@ -2811,4 +2755,60 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
|
|
|
2811
2755
|
}[];
|
|
2812
2756
|
comments_url: string;
|
|
2813
2757
|
}[];
|
|
2758
|
+
} | {
|
|
2759
|
+
total_count: number;
|
|
2760
|
+
incomplete_results: boolean;
|
|
2761
|
+
items: {
|
|
2762
|
+
id: number;
|
|
2763
|
+
node_id: string;
|
|
2764
|
+
number: number;
|
|
2765
|
+
title: string;
|
|
2766
|
+
body: string;
|
|
2767
|
+
state: "open" | "closed";
|
|
2768
|
+
locked: false;
|
|
2769
|
+
user: {
|
|
2770
|
+
login: string;
|
|
2771
|
+
id: number;
|
|
2772
|
+
node_id: string;
|
|
2773
|
+
avatar_url: string;
|
|
2774
|
+
html_url: string;
|
|
2775
|
+
type: "User" | "Organization";
|
|
2776
|
+
site_admin: false;
|
|
2777
|
+
};
|
|
2778
|
+
labels: {
|
|
2779
|
+
id: number;
|
|
2780
|
+
node_id: string;
|
|
2781
|
+
url: string;
|
|
2782
|
+
name: string;
|
|
2783
|
+
color: string;
|
|
2784
|
+
default: false;
|
|
2785
|
+
description: string;
|
|
2786
|
+
}[];
|
|
2787
|
+
assignee: {
|
|
2788
|
+
login: string;
|
|
2789
|
+
id: number;
|
|
2790
|
+
node_id: string;
|
|
2791
|
+
avatar_url: string;
|
|
2792
|
+
html_url: string;
|
|
2793
|
+
type: "User" | "Organization";
|
|
2794
|
+
site_admin: false;
|
|
2795
|
+
} | null;
|
|
2796
|
+
assignees: {
|
|
2797
|
+
login: string;
|
|
2798
|
+
id: number;
|
|
2799
|
+
node_id: string;
|
|
2800
|
+
avatar_url: string;
|
|
2801
|
+
html_url: string;
|
|
2802
|
+
type: "User" | "Organization";
|
|
2803
|
+
site_admin: false;
|
|
2804
|
+
}[];
|
|
2805
|
+
comments: number;
|
|
2806
|
+
html_url: string;
|
|
2807
|
+
repository_url: string;
|
|
2808
|
+
labels_url: string;
|
|
2809
|
+
comments_url: string;
|
|
2810
|
+
created_at: string;
|
|
2811
|
+
updated_at: string;
|
|
2812
|
+
closed_at: string | null;
|
|
2813
|
+
}[];
|
|
2814
2814
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type TwinDefinition } from "@pome-sh/sdk";
|
|
2
2
|
import { type RecorderStore } from "@pome-sh/sdk/server";
|
|
3
3
|
import type { Hono } from "hono";
|
|
4
|
-
import { GitHubDomain } from "./domain.js";
|
|
4
|
+
import { GitHubDomain } from "./domain/index.js";
|
|
5
5
|
import { type ParsedGitHubStateSeed } from "./seed.js";
|
|
6
6
|
import type { GitHubCloneDatabase, GitHubStateSeed } from "./types.js";
|
|
7
7
|
export declare const githubTwinDefinition: TwinDefinition<GitHubCloneDatabase, ParsedGitHubStateSeed, GitHubDomain>;
|
|
@@ -13,7 +13,7 @@ import { UnknownToolError, createApp, twinBuildInfo, } from "@pome-sh/sdk/server
|
|
|
13
13
|
import { summarizeGitHubAccessControlCatalog } from "@pome-sh/shared-types";
|
|
14
14
|
import { githubAccessControlPayload } from "./access-control.js";
|
|
15
15
|
import { openGitHubCloneDatabase } from "./db.js";
|
|
16
|
-
import { GitHubDomain } from "./domain.js";
|
|
16
|
+
import { GitHubDomain } from "./domain/index.js";
|
|
17
17
|
import { TwinError, githubError } from "./errors.js";
|
|
18
18
|
import { registerGitHubRoutes } from "./routes.js";
|
|
19
19
|
import { defaultSeedState, parseSeed } from "./seed.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"twin.js","sourceRoot":"","sources":["../../src/twin.ts"],"names":[],"mappings":"AAAA,sCAAsC;AACtC,EAAE;AACF,4EAA4E;AAC5E,wEAAwE;AACxE,6EAA6E;AAC7E,0EAA0E;AAC1E,yEAAyE;AACzE,yEAAyE;AACzE,kCAAkC;AAElC,OAAO,EAAK,QAAQ,EAAE,MAAM,KAAK,CAAC;AAClC,OAAO,EAAE,UAAU,EAA6C,MAAM,cAAc,CAAC;AACrF,OAAO,EACL,gBAAgB,EAChB,SAAS,EACT,aAAa,GAGd,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,mCAAmC,EAAE,MAAM,uBAAuB,CAAC;AAC5E,OAAO,EAAE,0BAA0B,EAAE,MAAM,qBAAqB,CAAC;AACjE,OAAO,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"twin.js","sourceRoot":"","sources":["../../src/twin.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pome-sh/twin-github",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Deterministic GitHub-shaped twin for agent testing — REST + MCP, SQLite-backed state.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@hono/node-server": "^2.0.10",
|
|
37
|
-
"@pome-sh/sdk": "0.
|
|
38
|
-
"@pome-sh/shared-types": "0.
|
|
39
|
-
"hono": "^4.12.
|
|
37
|
+
"@pome-sh/sdk": "0.6.0",
|
|
38
|
+
"@pome-sh/shared-types": "0.12.2",
|
|
39
|
+
"hono": "^4.12.31",
|
|
40
40
|
"zod": "^4.1.13"
|
|
41
41
|
},
|
|
42
42
|
"keywords": [
|
package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/package.json
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pome-sh/sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Twin engine for Pome digital twins — defineTwin() + serve(): HTTP mounting, bearer auth, trace recorder, MCP dispatch, SQLite-backed state.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dist"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@pome-sh/shared-types": "0.
|
|
39
|
+
"@pome-sh/shared-types": "0.12.0",
|
|
40
40
|
"hono": "^4.12.27",
|
|
41
41
|
"zod": "^4.1.13"
|
|
42
42
|
},
|