{"id":50309398,"url":"https://github.com/kongyo2/agent-primary-ts-starters-src","last_synced_at":"2026-05-28T19:30:32.948Z","repository":{"id":359918647,"uuid":"1247981884","full_name":"kongyo2/agent-primary-ts-starters-src","owner":"kongyo2","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-24T04:55:12.000Z","size":148,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-24T06:29:46.962Z","etag":null,"topics":["agent-skills","claude-code"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kongyo2.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":null,"dco":null,"cla":null}},"created_at":"2026-05-24T03:12:30.000Z","updated_at":"2026-05-24T05:16:32.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kongyo2/agent-primary-ts-starters-src","commit_stats":null,"previous_names":["kongyo2/agent-primary-ts-starters-src"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/kongyo2/agent-primary-ts-starters-src","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kongyo2%2Fagent-primary-ts-starters-src","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kongyo2%2Fagent-primary-ts-starters-src/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kongyo2%2Fagent-primary-ts-starters-src/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kongyo2%2Fagent-primary-ts-starters-src/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kongyo2","download_url":"https://codeload.github.com/kongyo2/agent-primary-ts-starters-src/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kongyo2%2Fagent-primary-ts-starters-src/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33624202,"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-05-28T02:00:06.440Z","response_time":99,"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":["agent-skills","claude-code"],"created_at":"2026-05-28T19:30:32.267Z","updated_at":"2026-05-28T19:30:32.938Z","avatar_url":"https://github.com/kongyo2.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @kongyo2/apts\n\n\u003e Agent-Primary TypeScript Starters — a CLI that lets coding agents `search` and `retrieve` the [agent-primary-ts-starters](https://github.com/kongyo2/agent-primary-ts-starters) skill guides on demand.\n\n`apts` wraps four agent-friendly TypeScript starters (tsconfig, Prettier, Oxlint, Zod) behind a semantic-search interface. Use it as a one-shot CLI so coding agents pull the right guidance into context automatically.\n\n## Quickstart\n\n```shell\n# Search for relevant skills\nnpx @kongyo2/apts@latest search \"set up strict tsconfig for an LLM agent loop\"\n\n# Retrieve a guide by ID\nnpx @kongyo2/apts@latest retrieve \"ts-tsconfig-modern-strict-starter\"\n\n# List every available skill\nnpx @kongyo2/apts@latest list\n```\n\n## CLI reference\n\n### `apts search \u003cquery\u003e [flags]`\n\nSemantic search over the skill catalog. Returns a JSON array sorted by cosine similarity.\n\n| Flag | Type | Default | Description |\n| --- | --- | --- | --- |\n| `--limit \u003cN\u003e` | int \u003e 0 | `5` | Maximum number of results. |\n| `--threshold \u003c0.0-1.0\u003e` | float | `0.0` | Minimum similarity to include. |\n| `--format \u003cfmt\u003e` | `json` \\| `text` | `json` | `text` emits one-line human-readable rows. |\n\n```shell\n# Take only the single best match\nnpx @kongyo2/apts@latest search \"lint TypeScript without stylistic noise\" --limit 1\n\n# Drop weak matches\nnpx @kongyo2/apts@latest search \"runtime validation\" --threshold 0.4\n\n# Human-readable output for eyeballing\nnpx @kongyo2/apts@latest search \"format diff-friendly\" --format text\n```\n\n### `apts retrieve \u003cids\u003e [flags]`\n\nPull one or more SKILL.md files by ID. Comma-separated IDs are supported.\n\n| Flag | Type | Default | Description |\n| --- | --- | --- | --- |\n| `--format \u003cfmt\u003e` | `markdown` \\| `json` | `markdown` | `json` returns `[{ id, frontmatter, content, … }]`. |\n\n```shell\n# Default: raw markdown, ready to inline into agent context\nnpx @kongyo2/apts@latest retrieve ts-npm-prettier-starter\n\n# Structured for programmatic consumers\nnpx @kongyo2/apts@latest retrieve ts-npm-prettier-starter,ts-npm-oxlint-starter --format json\n```\n\n### `apts list`\n\nPrint the full catalog as JSON: `{ id, category, description, tokenCount }`.\n\n## License\n\nMIT. Skill content under `skills/` is mirrored from [agent-primary-ts-starters](https://github.com/kongyo2/agent-primary-ts-starters).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkongyo2%2Fagent-primary-ts-starters-src","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkongyo2%2Fagent-primary-ts-starters-src","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkongyo2%2Fagent-primary-ts-starters-src/lists"}