Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

# Fixtures are byte-exact test data; editors must not "fix" them.
[tests/fixtures/**]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Normalize all text files to LF in the repository.
* text=auto eol=lf

# Fixture files exercise byte-exact round-trip behavior (CRLF, BOM, UTF-8).
# They must never be rewritten by git line-ending normalization.
tests/fixtures/** -text
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI

on:
push:
branches: [main, master]
pull_request:

# Everything below runs fully offline after dependency install:
# no LLM, no API key, no external service.
jobs:
test:
name: node ${{ matrix.node }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
# Version comes from the "packageManager" field in package.json.

- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Lint
run: pnpm lint

- name: Typecheck
run: pnpm typecheck

- name: Test (compatibility fixtures, round-trip byte identity, CLI, drift)
run: pnpm test

- name: Build
run: pnpm build

- name: CLI smoke test against the example Kiro workspace
run: node scripts/smoke.mjs
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Dependencies
node_modules/

# Build output
dist/
*.tsbuildinfo

# Test output
coverage/

# Tooling caches
.eslintcache

# Logs
*.log

# OS noise
.DS_Store
Thumbs.db

# NOTE: `.specbridge/` directories are intentionally NOT ignored here.
# The example projects commit sidecar state on purpose so the repository
# demonstrates how SpecBridge stores runtime state outside `.kiro`.
# End-user projects typically add `.specbridge/runs`, `.specbridge/cache`,
# and `.specbridge/reports` to their own .gitignore.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 SpecBridge contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
18 changes: 18 additions & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# NOTICE

SpecBridge is an **independent open-source project**.

- It is **not affiliated with, endorsed by, or sponsored by** Amazon Web
Services, Inc. (AWS) or the Kiro team.
- Kiro is referenced only to describe **compatibility with publicly documented
project file locations, file names, and observable document formats**
(`.kiro/steering/*.md` and `.kiro/specs/<name>/*.md`).
- This repository contains **no Kiro proprietary prompts, source code, private
APIs, logos, or visual assets**.
- All fixture and example content in this repository was written for this
project and does not reproduce Kiro-generated material.

"Kiro" and "AWS" are trademarks of their respective owners and are used here
only for factual, descriptive compatibility statements.

SpecBridge is distributed under the MIT License. See [LICENSE](LICENSE).
Loading
Loading