CodeSampleX

Пример

@types/node 22.20.2: name

Проверенный пример — npm @types/node 22.20.2: name. Контракт выполнен на node 22 · linux debian/x64 · docker и пройден: @types/node package.json defines…

sha256:4fbb7ca7addc0f78b439e05831afc9ba6f395a2aa7546d6f28e88e5b59285c5d

Эта сеть предлагает одно: образец, который собирается. Она запустила его в песочнице и сохранила подписанную квитанцию. Она ничего не оценивает и ничего не гарантирует — собирается ли тот же код у вас, она не измеряла. Сколько различных ключей подписи подали пройденную квитанцию контракта. Один — только автор; больше одного — значит, кто-то ещё тоже собрал. Ключ создаётся сам и не имеет зарегистрированной личности, поэтому считаются ключи, а не люди. MIT-0

Свидетельства выполнения

Заявленное окружение и подписанные запуски разделены, чтобы вы точно видели, что этот образец запускал и где.

Основа свидетельства
Подписанный контракт пройден
Квитанции проверки
1
Ключи подписи, собравшие его
1
Заявленная среда linux 24 · ubuntu · glibc 2.39 x64 npm

Среды запусков проверки

Окружение Контракт Этапы Запуск
node 22 · linux debian/x64 · docker ed25519:c1973797be207ac4 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · node-typescript@1node:22@sha256:8a34c4ab3ea2…
2026-09-16

Кейс

HOW
Цель
verify @types/node.name in pkg:npm/%40types/node@22.20.2
Пакеты
Символы
  • @types/node.name
Создан
2026-09-16T22:29:26Z

Контракт

  1. @types/node package.json defines package name as @types/node and version as 22.20.2
  2. @types/node package.json specifies index.d.ts as the types entry point
  3. @types/node index.d.ts exists and references standard node declarations
  4. @types/node package declares undici-types in dependencies

Файлы

  • PROMPT.md
  • csx.json
  • package-lock.json
  • package.json
  • spec.json
  • test/contract.mjs

Скачать артефакт с исходным кодом (tar.gz)

Исходный код

PROMPT.md
Clean-room public code sample — generation instructions

Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.

A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.

Goal: verify @types/node.name in pkg:npm/%40types/node@22.20.2
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:npm/%40types/node@22.20.2
Demonstrate these symbols/APIs:
  - @types/node.name

Rules:
  - One focused purpose; the smallest project that proves the goal.
  - Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
  - Pin every dependency with a lockfile so resolution is reproducible.
  - No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
  - No personal names, emails, company names, or project identifiers of any kind.
  - No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
  - Keep it under 200 files and 256KB packed.
csx.json
{"case":{"caseId":"case:sha256:9b4e857a4b4299ed94d20cac02e86c899368c4340b0e848b8ac42bf62c93a9a7","contract":["@types/node package.json defines package name as @types/node and version as 22.20.2","@types/node package.json specifies index.d.ts as the types entry point","@types/node index.d.ts exists and references standard node declarations","@types/node package declares undici-types in dependencies"],"goal":"verify @types/node.name in pkg:npm/%40types/node@22.20.2","kind":"HOW","packages":["pkg:npm/%40types/node@22.20.2"],"schemaVersion":1,"symbols":["@types/node.name"]},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"npm","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/%40types/node@22.20.2"],"schemaVersion":1,"subject":"pkg:npm/%40types/node@22.20.2","symbols":["@types/node.name"],"verifierAdapter":"node-typescript@1"}
package-lock.json
{
  "name": "sample-types-node-name",
  "version": "1.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "sample-types-node-name",
      "version": "1.0.0",
      "license": "MIT-0",
      "dependencies": {
        "@types/node": "22.20.2"
      }
    },
    "node_modules/@types/node": {
      "version": "22.20.2",
      "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.2.tgz",
      "integrity": "sha512-xlvWf4Vs9n1PEVYwP1n4vvG07M6y8WgvJ2t0vbrWTmijsIHp1cS+uJ2kMIRdY3nHZK0nCYKrPeD171+SzF4/zw==",
      "license": "MIT",
      "dependencies": {
        "undici-types": "~6.21.0"
      }
    },
    "node_modules/undici-types": {
      "version": "6.21.0",
      "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
      "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
      "license": "MIT"
    }
  }
}
package.json
{
  "name": "sample-types-node-name",
  "version": "1.0.0",
  "type": "module",
  "private": true,
  "license": "MIT-0",
  "dependencies": {
    "@types/node": "22.20.2"
  }
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify @types/node.name in pkg:npm/%40types/node@22.20.2",
  "kind": "HOW",
  "packages": [
    "pkg:npm/%40types/node@22.20.2"
  ],
  "symbols": [
    "@types/node.name"
  ]
}
test/contract.mjs
import assert from 'node:assert/strict';
import fs from 'node:fs';
import { createRequire } from 'node:module';

const require = createRequire(import.meta.url);

// 1. @types/node package.json defines package name as @types/node and version as 22.20.2
const pkgJson = require('@types/node/package.json');
assert.equal(pkgJson.name, '@types/node');
assert.equal(pkgJson.version, '22.20.2');

// 2. @types/node package.json specifies index.d.ts as the types entry point
assert.equal(pkgJson.types, 'index.d.ts');

// 3. @types/node index.d.ts exists and references standard node declarations
const indexDtsPath = require.resolve('@types/node/index.d.ts');
assert.ok(fs.existsSync(indexDtsPath));
const indexDtsContent = fs.readFileSync(indexDtsPath, 'utf8');
assert.ok(indexDtsContent.includes('/// <reference path="fs.d.ts" />'));
assert.ok(indexDtsContent.includes('/// <reference path="buffer.d.ts" />'));
assert.ok(indexDtsContent.includes('/// <reference path="events.d.ts" />'));

// 4. @types/node package declares undici-types in dependencies
assert.ok(pkgJson.dependencies && pkgJson.dependencies['undici-types']);

console.log('All contract tests passed.');

Исходный сидер

аноним