chore: initial project setup with CLI, CI/CD, and conventions - #1
Merged
Merged
Conversation
palmithor
force-pushed
the
chore/add-conventional-commits-to-claude-md
branch
from
April 9, 2026 18:00
0f9c468 to
865761d
Compare
palmithor
force-pushed
the
chore/add-conventional-commits-to-claude-md
branch
3 times, most recently
from
April 9, 2026 18:38
70213e4 to
60cf482
Compare
Sets up the kronan-cli project from scratch including source code, tooling config, and automation: - CLI entrypoint and checkout command with tests (commander + clack/prompts) - Conventional Commits guideline added to CLAUDE.md - oxlint + oxfmt for linting and formatting - bun lockfile and tsconfig - GitHub Actions workflows for CI and releases - OpenAPI spec (kronan-openapi.yaml) used to generate typed API client - install.sh for local binary installation - README with usage documentation - kronan/SKILL.md agent skill definition
palmithor
force-pushed
the
chore/add-conventional-commits-to-claude-md
branch
from
April 9, 2026 18:43
60cf482 to
35e7de4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR sets up the
kronan-cliproject from scratch — a Bun-based CLI tool for interacting with the Kronan API.What's included
CLI
src/index.ts— CLI entrypoint usingcommandersrc/commands/checkout.ts— checkout command using@clack/promptsfor interactive UXsrc/commands/checkout.test.ts— unit tests (3 passing)API
kronan-openapi.yaml— full OpenAPI spec used to auto-generate a typed API client viaumbraTooling & Config
package.json— scripts for build, typecheck, lint, format, test, and local installtsconfig.json— TypeScript configurationbun.lock— lockfile.oxlintrc.json— oxlint configurationCLAUDE.md— agent instructions including Bun usage and Conventional Commits conventionCI/CD
.github/workflows/ci.yml— runs typecheck, lint, format check, tests, and build on every push/PR.github/workflows/release.yml— automated release workflowDocs & Scripts
README.md— usage documentationinstall.sh— script to build and install the binary locally to~/.local/binkronan/SKILL.md— agent skill definition for the kronan command