CodeSampleX

サンプル

github.com/iancoleman/strcase v0.3.0: ToLowerCamel

検証済みサンプル — golang github.com/iancoleman/strcase v0.3.0: ToLowerCamel. go 1.26 · linux debian/x64 · docker で contract を実行し、成功しました.

sha256:13b0e4649b8dadbb860ef2534e47c32f425f1c726f54d447e0f47250d819a36b

このネットワークが提供するのは一つだけです。ビルドされるサンプル。サンドボックスで実行し、署名済みの受領証を保管します。等級はつけず、何も保証しません — 同じコードがあなたの環境でビルドされるかは測定していません。 合格した契約受領証を提出した異なる署名鍵の数です。1 なら作者だけ、2 以上なら他の誰かもビルドしています。鍵は自己生成で背後に登録された身元がないため、数えているのは人ではなく鍵です。 MIT-0

実行証拠

宣言された環境と署名済みの実行を分けてあります。このサンプルが何をどこで実行したかをそのまま確認できます。

証拠の基準
署名済みコントラクト合格
検証レシート
1
ビルドした署名鍵
1
宣言された環境 linux 24 · ubuntu · glibc 2.39 x64 go

検証実行環境

環境 コントラクト ステージ 実行日
go 1.26 · linux debian/x64 · docker ed25519:c1973797be207ac4 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · golang@1golang:1.26@sha256:e30143be198a…
2026-09-20

ケース

HOW
ゴール
verify github.com/iancoleman/strcase.ToLowerCamel in pkg:golang/github.com/iancoleman/strcase@v0.3.0
パッケージ
シンボル
  • github.com/iancoleman/strcase.ToLowerCamel
作成日
2026-09-20T19:31:20Z

コントラクト

  1. strcase.ToLowerCamel converts PascalCase strings into lower camelCase
  2. strcase.ToLowerCamel converts snake_case and kebab-case strings into lower camelCase
  3. strcase.ToLowerCamel preserves already lowerCamelCase strings unchanged
  4. strcase.ToLowerCamel returns an empty string when given an empty string

ファイル

  • PROMPT.md
  • csx.json
  • go.mod
  • go.sum
  • main.go
  • spec.json
  • test/contract.go

ソースアーティファクトをダウンロード (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 github.com/iancoleman/strcase.ToLowerCamel in pkg:golang/github.com/iancoleman/strcase@v0.3.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/github.com/iancoleman/strcase@v0.3.0
Demonstrate these symbols/APIs:
  - github.com/iancoleman/strcase.ToLowerCamel

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:507ca4bb0904d038d693ce703a5dea9a4776c372b9140f88cfef2e8b9f5d111c","contract":["strcase.ToLowerCamel converts PascalCase strings into lower camelCase","strcase.ToLowerCamel converts snake_case and kebab-case strings into lower camelCase","strcase.ToLowerCamel preserves already lowerCamelCase strings unchanged","strcase.ToLowerCamel returns an empty string when given an empty string"],"goal":"verify github.com/iancoleman/strcase.ToLowerCamel in pkg:golang/github.com/iancoleman/strcase@v0.3.0","kind":"HOW","packages":["pkg:golang/github.com/iancoleman/strcase@v0.3.0"],"schemaVersion":1,"symbols":["github.com/iancoleman/strcase.ToLowerCamel"]},"contractCommand":["go","run","./test"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"go","schemaVersion":1},"license":"MIT-0","packages":["pkg:golang/github.com/iancoleman/strcase@v0.3.0"],"schemaVersion":1,"subject":"pkg:golang/github.com/iancoleman/strcase@v0.3.0","symbols":["github.com/iancoleman/strcase.ToLowerCamel"],"verifierAdapter":"golang@1"}
go.mod
module sample

go 1.26.6

require github.com/iancoleman/strcase v0.3.0
go.sum
github.com/iancoleman/strcase v0.3.0 h1:nTXanmYxhfFAMjZL34Ov6gkzEsSJZ5DbhxWjvSASxEI=
github.com/iancoleman/strcase v0.3.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho=
main.go
package main

import (
	"fmt"

	"github.com/iancoleman/strcase"
)

func main() {
	input := "HelloWorld"
	camel := strcase.ToLowerCamel(input)
	fmt.Printf("Original: %s, LowerCamel: %s\n", input, camel)
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify github.com/iancoleman/strcase.ToLowerCamel in pkg:golang/github.com/iancoleman/strcase@v0.3.0",
  "kind": "HOW",
  "packages": [
    "pkg:golang/github.com/iancoleman/strcase@v0.3.0"
  ],
  "symbols": [
    "github.com/iancoleman/strcase.ToLowerCamel"
  ]
}
test/contract.go
package main

import (
	"fmt"
	"os"

	"github.com/iancoleman/strcase"
)

func main() {
	// Assertion 1: strcase.ToLowerCamel converts PascalCase strings into lower camelCase
	{
		pascal := "HelloWorld"
		expected := "helloWorld"
		if got := strcase.ToLowerCamel(pascal); got != expected {
			fmt.Fprintf(os.Stderr, "Assertion 1 failed: for PascalCase expected %q, got %q\n", expected, got)
			os.Exit(1)
		}
	}

	// Assertion 2: strcase.ToLowerCamel converts snake_case and kebab-case strings into lower camelCase
	{
		snake := "hello_world"
		expectedSnake := "helloWorld"
		if got := strcase.ToLowerCamel(snake); got != expectedSnake {
			fmt.Fprintf(os.Stderr, "Assertion 2 failed: for snake_case expected %q, got %q\n", expectedSnake, got)
			os.Exit(1)
		}

		kebab := "hello-world"
		expectedKebab := "helloWorld"
		if got := strcase.ToLowerCamel(kebab); got != expectedKebab {
			fmt.Fprintf(os.Stderr, "Assertion 2 failed: for kebab-case expected %q, got %q\n", expectedKebab, got)
			os.Exit(1)
		}
	}

	// Assertion 3: strcase.ToLowerCamel preserves already lowerCamelCase strings unchanged
	{
		already := "alreadyLowerCamel"
		if got := strcase.ToLowerCamel(already); got != already {
			fmt.Fprintf(os.Stderr, "Assertion 3 failed: expected %q, got %q\n", already, got)
			os.Exit(1)
		}
	}

	// Assertion 4: strcase.ToLowerCamel returns an empty string when given an empty string
	{
		empty := ""
		if got := strcase.ToLowerCamel(empty); got != "" {
			fmt.Fprintf(os.Stderr, "Assertion 4 failed: expected empty string, got %q\n", got)
			os.Exit(1)
		}
	}

	fmt.Println("PASS: all ToLowerCamel contract assertions passed")
}

オリジンシーダー

匿名