Skip to content
Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tobi Validator

Public GitHub entry surface for the released Stage 1 product line of Organetic:

AI Verification Engine / Tobi Validator

This repository provides the public GitHub entry for:

  • public documentation
  • shipped examples
  • GitHub workflow adoption guidance
  • diagnostics and support guidance
  • workflow-fit and issue intake
  • the public GitHub Action wrapper for the released Stage 1 validator line

It is a public documentation and adoption repository.

It is not the full development source repository.

It is also not an unrestricted public binary distribution channel for the full Stage 1 product surface.


Released Stage 1 Surface

The current released Stage 1 surface is intentionally narrow:

  • installable tobi CLI
  • canonical ASCII output
  • current _h compatibility identity
  • deterministic diagnostics
  • golden conformance execution
  • thin packaging and install / usage framing

Stage 1 should not be read as:

  • a runtime / backend product
  • a verification API
  • a platform SDK
  • a broader Organetic platform release

Start Here

For the shortest public path:

Representative command shapes for the released validator line:

.\tobi.exe canon .\examples\sample.tsubasa
.\tobi.exe golden .\examples\golden\fixtures.json
./tobi canon ./examples/sample.tsubasa
./tobi golden ./examples/golden/fixtures.json

Open Stage 1 conformance corpus

The public Stage 1 conformance corpus for Tsubasa artifacts is available at OrganeticSphere/tsubasa-stage1-conformance. It provides public-safe .tsubasa examples, manifest records, verified canonical outputs, diagnostics, and coverage limitations. The corpus makes Stage 1 validator behavior inspectable without publishing the private Tobi Validator implementation.

Read the local overview in Open Stage 1 Conformance Corpus, or inspect the public corpus manifest, verification report, and coverage limitations.

The public corpus can be reviewed independently. Running the validator still requires authorized Tobi Validator access through the evaluation access path. It should not be read as free unrestricted validator execution.


Proof-by-example repository

See the first public flagship validator-first demo repository:

This repo shows:

  • a valid .tsubasa artifact,
  • a drift-equivalent convergent variant,
  • a malformed reject sibling,
  • a GitHub PR gate around the released Stage 1 validator line.

GitHub Action

This repository exposes the public GitHub Action wrapper for the released Stage 1 validator line.

The wrapper is public.

The binary delivery path is controlled and separate.

That means:

  • the public action wrapper lives here
  • public evaluation users use TOBI_EVAL_TOKEN issued through Organetic evaluation access
  • private distribution credentials are internal to Organetic and are not required in customer repositories
  • private distribution access is handled internally by Organetic's evaluation broker
  • the action infers the release archive from the runner OS and architecture when no explicit archive override is provided

Supported runner families for the controlled binary line:

  • Windows x86_64
  • Linux x86_64
  • macOS arm64
  • macOS x86_64

Shipped Action modes:

  • canon
  • golden

No validate mode is shipped.

Required Secret

For public evaluation access, create a repository secret in the consuming GitHub repository:

  • TOBI_EVAL_TOKEN

That secret should be the 7-day evaluation token issued by Organetic through the evaluation access path.

https://organetic.ai/eval-access

Minimal Linux canon Example

name: Tobi Canon

on:
  workflow_dispatch:
  pull_request:

jobs:
  canon:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - uses: OrganeticSphere/tobi-validator@v1
        with:
          eval_token: ${{ secrets.TOBI_EVAL_TOKEN }}
          mode: canon
          canon_input: examples/sample.tsubasa

Minimal Windows golden Example

name: Tobi Golden

on:
  workflow_dispatch:
  pull_request:

jobs:
  golden:
    runs-on: windows-latest

    steps:
      - uses: actions/checkout@v4

      - uses: OrganeticSphere/tobi-validator@v1
        with:
          eval_token: ${{ secrets.TOBI_EVAL_TOKEN }}
          mode: golden
          golden_fixtures: examples/golden/fixtures.json

Current v1 Reading

Action v1 is intentionally narrow:

  • canon mode
  • golden mode
  • evaluation-token access path for public onboarding and customer repositories
  • private distribution credentials handled internally by Organetic's evaluation broker
  • checksum verification required before extraction
  • OS-aware archive selection for Windows, Linux, and macOS
  • no runtime/backend/API/platform claims

What This Repository Contains

This repository contains:

  • public Stage 1 documentation
  • shipped examples
  • GitHub workflow starter materials
  • support and diagnostics guidance
  • public workflow-fit and issue intake paths
  • the public action wrapper surface

This repository does not contain:

  • the full private development source tree
  • internal product-boundary notes
  • internal launch-control documents
  • unrestricted public full-binary distribution for the complete Stage 1 product path

GitHub-First Public Path

The current public launch motion is GitHub-first:

  • product understanding
  • documentation
  • shipped examples
  • a narrow GitHub workflow understanding path around the released validator CLI
  • a public action wrapper with controlled binary access

The public repository is meant to help users understand the released Stage 1 line and discuss workflow fit.

It should not be read as a promise that the full production usage path is available through unrestricted public binary download.


Support

If you need help interpreting the current Stage 1 surface, start with:

Please keep reports exact and reproducible.


Contact


Current Bottom Line

This repository is the public GitHub entry surface for the released Stage 1 line of Organetic.

In short:

  • released product: AI Verification Engine / Tobi Validator
  • current public path: GitHub-first
  • current shipped surface: narrow validator-first CLI
  • this repo: docs + examples + workflow guidance + action wrapper + issue intake
  • full controlled product delivery: separate from unrestricted public repo access

Telegram Channel

About

AI Verification Engine / Tobi Validator — a narrow validator-first CLI for canonical, reproducible, validator-checkable reasoning artifacts.

Topics

Resources

Security policy

Stars

Watchers

Forks

Releases

Packages

Contributors