Skip to content

Commit 8281817

Browse files
authored
Merge branch 'main' into feat/gitignore-defaults
2 parents bda26e1 + cac6c1f commit 8281817

4 files changed

Lines changed: 113 additions & 73 deletions

File tree

.github/workflows/tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,20 @@ jobs:
2020
- run: npm install
2121
- run: npm run lint
2222
- run: npm test
23+
24+
tests:
25+
name: tests
26+
needs: [test]
27+
runs-on: ubuntu-latest
28+
if: always()
29+
steps:
30+
- name: Check test results
31+
run: |
32+
results=($(echo '${{ toJSON(needs.*.result) }}' | jq -r '.[]'))
33+
for r in "${results[@]}"; do
34+
if [[ "$r" != "success" ]]; then
35+
echo "One or more jobs failed: $r"
36+
exit 1
37+
fi
38+
done
39+
echo "All jobs passed"

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
## [0.1.7](https://github.com/brickhouse-tech/sync-agents/compare/v0.1.6...v0.1.7) (2026-04-01)
6+
7+
## [0.1.6](https://github.com/brickhouse-tech/sync-agents/compare/v0.1.5...v0.1.6) (2026-03-27)
8+
9+
10+
### Features
11+
12+
* add inheritance convention support ([7017e39](https://github.com/brickhouse-tech/sync-agents/commit/7017e39127e51d7168c05fc70451df862d71df6c))
13+
14+
15+
### Bug Fixes
16+
17+
* resolve shellcheck lint warnings in inherit command ([673131e](https://github.com/brickhouse-tech/sync-agents/commit/673131ec60b522409cd685db9c037ec3ddb14699))
18+
19+
## [0.1.5](https://github.com/brickhouse-tech/sync-agents/compare/v0.1.4...v0.1.5) (2026-03-26)
20+
21+
## [0.1.4](https://github.com/brickhouse-tech/sync-agents/compare/v0.1.3...v0.1.4) (2026-03-14)
22+
23+
24+
### Features
25+
26+
* add cursor/codex/copilot targets, watch, import, hook, templates, LICENSE ([5cf1831](https://github.com/brickhouse-tech/sync-agents/commit/5cf1831eeaec7771ff4d850659bf95ec8fac6f93)), closes [#4](https://github.com/brickhouse-tech/sync-agents/issues/4) [#5](https://github.com/brickhouse-tech/sync-agents/issues/5) [#6](https://github.com/brickhouse-tech/sync-agents/issues/6) [#7](https://github.com/brickhouse-tech/sync-agents/issues/7) [#8](https://github.com/brickhouse-tech/sync-agents/issues/8) [#9](https://github.com/brickhouse-tech/sync-agents/issues/9) [#10](https://github.com/brickhouse-tech/sync-agents/issues/10) [#12](https://github.com/brickhouse-tech/sync-agents/issues/12)
27+
528
## [0.1.3](https://github.com/brickhouse-tech/sync-agents/compare/v0.1.2...v0.1.3) (2026-03-14)
629

730

package-lock.json

Lines changed: 72 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@brickhouse-tech/sync-agents",
3-
"version": "0.1.3",
3+
"version": "0.1.7",
44
"description": "Simple scripts to DRY up common agent interactions across multiple LLM providers.",
55
"keywords": [
66
"agents",

0 commit comments

Comments
 (0)