{"id":25701584,"url":"https://github.com/kentbull/keri-ts","last_synced_at":"2026-06-12T00:01:29.073Z","repository":{"id":279116645,"uuid":"937762772","full_name":"kentbull/keri-ts","owner":"kentbull","description":"Monorepo for Typescript CESR, KERI, and ACDC","archived":false,"fork":false,"pushed_at":"2026-06-06T05:27:39.000Z","size":3574,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-06-06T06:05:43.154Z","etag":null,"topics":["acdc","cesr","cybersecurity","decentralized-identity","keri"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/keri-ts","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kentbull.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-02-23T20:43:17.000Z","updated_at":"2026-06-06T05:27:22.000Z","dependencies_parsed_at":"2026-06-06T06:01:53.905Z","dependency_job_id":null,"html_url":"https://github.com/kentbull/keri-ts","commit_stats":null,"previous_names":["kentbull/keri-ts"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/kentbull/keri-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentbull%2Fkeri-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentbull%2Fkeri-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentbull%2Fkeri-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentbull%2Fkeri-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kentbull","download_url":"https://codeload.github.com/kentbull/keri-ts/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kentbull%2Fkeri-ts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34222709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acdc","cesr","cybersecurity","decentralized-identity","keri"],"created_at":"2025-02-25T04:17:54.870Z","updated_at":"2026-06-12T00:01:29.066Z","avatar_url":"https://github.com/kentbull.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# keri-ts monorepo\n\nTypeScript packages for KERI and CESR:\n\n- `@keri-ts/tufa`: Trust Utilities for Agents CLI application package\n- `keri-ts`: KERI protocol/runtime library\n- `cesr-ts`: CESR parsing and annotation library\n\n## Install\n\n```bash\n# Global install\nnpm install -g @keri-ts/tufa\ntufa version\n\n# One-off usage without global install\nnpx @keri-ts/tufa version\n```\n\n### Install with NPM\n\n```bash\nnpm i -g @keri-ts/tufa\n\ntufa -h\n```\n\n### Local install\n\n```bash\n# from repo root\ndeno task npm:build:all\n\ncd packages/tufa\nTARBALL=\"$(cd npm \u0026\u0026 npm pack --silent | tail -n1)\"\nnpm install -g \"$PWD/npm/$TARBALL\"\n\ntufa -h\n```\n\n### Sample command to test with GLEIF production witness\n\n```bash\ncurl https://gleif-it.github.io/.well-known/keri/oobi/BDkq35LUU63xnFmfhljYYRY0ymkCg7goyeCxN30tsvmS/index.json | tufa annotate\n```\n\n## Quick start\n\n### Easiest entrypoints\n\n```bash\n# Show the CLI version\ntufa version\n\n# Annotate a CESR stream from file\ntufa annotate --in samples/cesr-streams/CESR_1_0-oor-auth-vc.cesr\n\n# Annotate from stdin\ncat samples/cesr-streams/CESR_1_0-oor-auth-vc.cesr | tufa annotate\n\n# Benchmark CESR parser on any stream\ntufa benchmark cesr --in samples/cesr-streams/CESR_1_0-oor-auth-vc.cesr\n```\n\n`tufa annotate` supports:\n\n- `--in \u003cpath\u003e` input file (defaults to stdin)\n- `--out \u003cpath\u003e` output file (defaults to stdout)\n- `--qb2` treat input as qb2 binary\n- `--pretty` pretty-print annotation output\n- `--colored` colorize annotation output on stdout only (ignored with `--out`)\n\nColor overrides can be provided in `$HOME/.tufa/annot-color.yaml` or\n`$HOME/.tufa/annot-color.yml` with keys: `counter`, `group`, `body`,\n`signature`, `said`, `opaque`, `comment`. Allowed values: `black`, `red`,\n`green`, `yellow`, `blue`, `magenta`, `cyan`, `white`, and bright variants\n(`brightBlack` ... `brightWhite`).\n\n## From source (repo)\n\n```bash\n# Run CLI from workspace\ndeno task tufa version\ndeno task tufa annotate --in ../../samples/cesr-streams/CESR_1_0-oor-auth-vc.cesr\n\n# Run standard CESR parser benchmark baselines\ndeno task bench:cesr\n\n# Benchmark parser on any stream from source\ndeno task tephra:bench --in ../../samples/cesr-streams/CESR_1_0-oor-auth-vc.cesr\n\n# Run quality checks\ndeno task quality\n```\n\n## Package docs\n\n- `packages/tufa/README.md`: `@keri-ts/tufa` CLI package\n- `packages/keri/README.md`: `keri-ts` library package\n- `packages/cesr/README.md`: `cesr-ts` parser/annotator library\n\n## Maintainer docs\n\nRelease/versioning and maintainer workflows are documented in:\n\n- `MAINTAINER-README.md`\n- `docs/versioning/release-versioning.md`\n\n## License\n\nLicensed under the Apache License, Version 2.0 (`Apache-2.0`). See `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentbull%2Fkeri-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkentbull%2Fkeri-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentbull%2Fkeri-ts/lists"}