agent-facets 0.1.4 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.package.json.bak +1 -1
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +17 -0
- package/dist/facet +0 -0
- package/package.json +3 -3
- package/src/__tests__/edit-integration.test.ts +18 -2
package/.package.json.bak
CHANGED
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# agent-facets
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#39](https://github.com/agent-facets/facets/pull/39) [`f380b7b`](https://github.com/agent-facets/facets/commit/f380b7bc5115acec1f974ef1401eba199a2f90fb) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Ensure release CI works in isolation
|
|
8
|
+
|
|
9
|
+
## 0.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#35](https://github.com/agent-facets/facets/pull/35) [`6350718`](https://github.com/agent-facets/facets/commit/63507188f1bb3a7276cd4812f69f7d16d1778fd6) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Ensure proper release isolation
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#37](https://github.com/agent-facets/facets/pull/37) [`1c48260`](https://github.com/agent-facets/facets/commit/1c48260ab77fd27e64be6c5884aa6c447e3639e0) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Better dev & ci dependency management via mise
|
|
18
|
+
- [#33](https://github.com/agent-facets/facets/pull/33) [`540e126`](https://github.com/agent-facets/facets/commit/540e126e677de98a9b3d4e39542df37de8756b73) Thanks [@eXamadeus](https://github.com/eXamadeus)! - Ensure CI runs tests before release and notify Slack when failures occur.
|
|
19
|
+
|
|
3
20
|
## 0.1.4
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/facet
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"url": "https://github.com/agent-facets/facets",
|
|
6
6
|
"directory": "packages/cli"
|
|
7
7
|
},
|
|
8
|
-
"version": "0.1
|
|
8
|
+
"version": "0.2.1",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"bin": {
|
|
11
11
|
"facet": "./dist/facet"
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"react-devtools-core": "7.0.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@agent-facets/brand": "0.
|
|
33
|
-
"@agent-facets/core": "0.
|
|
32
|
+
"@agent-facets/brand": "0.2.0",
|
|
33
|
+
"@agent-facets/core": "0.2.0",
|
|
34
34
|
"@types/bun": "1.3.10",
|
|
35
35
|
"ink-testing-library": "4.0.0"
|
|
36
36
|
},
|
|
@@ -3,6 +3,7 @@ import { mkdir } from 'node:fs/promises'
|
|
|
3
3
|
import { tmpdir } from 'node:os'
|
|
4
4
|
import { join } from 'node:path'
|
|
5
5
|
import { runBuildPipeline } from '@agent-facets/core'
|
|
6
|
+
import dedent from 'dedent'
|
|
6
7
|
import { applyOperations, buildEditContext } from '../commands/edit/index.ts'
|
|
7
8
|
import type { EditOperation } from '../tui/views/edit/edit-types.ts'
|
|
8
9
|
|
|
@@ -70,7 +71,15 @@ describe('edit integration', () => {
|
|
|
70
71
|
skills: { review: { description: 'Review' } },
|
|
71
72
|
})
|
|
72
73
|
await mkdir(join(dir, 'skills/review'), { recursive: true })
|
|
73
|
-
await Bun.write(
|
|
74
|
+
await Bun.write(
|
|
75
|
+
join(dir, 'skills/review/SKILL.md'),
|
|
76
|
+
dedent`
|
|
77
|
+
---
|
|
78
|
+
name: Review
|
|
79
|
+
---
|
|
80
|
+
# Review skill
|
|
81
|
+
`,
|
|
82
|
+
)
|
|
74
83
|
|
|
75
84
|
const result = await buildEditContext(dir)
|
|
76
85
|
expect(result.ok).toBe(true)
|
|
@@ -104,7 +113,14 @@ describe('edit integration', () => {
|
|
|
104
113
|
await mkdir(join(dir, 'skills/review'), { recursive: true })
|
|
105
114
|
await Bun.write(
|
|
106
115
|
join(dir, 'skills/review/SKILL.md'),
|
|
107
|
-
|
|
116
|
+
dedent`
|
|
117
|
+
---
|
|
118
|
+
name: Review
|
|
119
|
+
description: A review skill
|
|
120
|
+
---
|
|
121
|
+
# Review
|
|
122
|
+
Review all code.
|
|
123
|
+
`,
|
|
108
124
|
)
|
|
109
125
|
|
|
110
126
|
const manifest = {
|