@stackbone/cli 0.1.0-alpha.8 → 0.1.0-alpha.9
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/CHANGELOG.md +19 -0
- package/main.js +9025 -773
- package/package.json +4 -2
- package/stackbone-cli-0.1.0-alpha.9.tgz +0 -0
- package/stackbone-cli-0.1.0-alpha.8.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.0-alpha.9] - 2026-06-12
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `stackbone connectors` — lists the connectors in the catalog and the
|
|
15
|
+
workspace connections (ids + names) configured for the current account, so
|
|
16
|
+
you can see what an installed agent can reach before invoking it.
|
|
17
|
+
- `stackbone trigger` — fires a fake automation trigger against the local dev
|
|
18
|
+
agent, so connector-driven flows can be exercised end to end without the
|
|
19
|
+
real external event.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- The dev agent entry file is now generated under `.stackbone/dev/` instead of
|
|
24
|
+
at the project root, keeping the working tree clean during `stackbone dev`.
|
|
25
|
+
- The dev emulator now serves mock/passthrough connections and generates the
|
|
26
|
+
connection TypeScript types on the fly, so agent code that calls
|
|
27
|
+
`client.connections` type-checks locally.
|
|
28
|
+
|
|
10
29
|
## [0.1.0-alpha.7] - 2026-05-26
|
|
11
30
|
|
|
12
31
|
### Added
|