@axtary/config 0.2.0 → 0.4.0
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/README.md +5 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ YAML configuration loading for local Axtary runtime packages.
|
|
|
4
4
|
|
|
5
5
|
Early `0.x` release: the runtime path is real and tested, but the API is not stable yet and may change between minor versions.
|
|
6
6
|
|
|
7
|
+
The source repository is currently private. Public product documentation and runnable guides are at [axtary.com/docs](https://www.axtary.com/docs).
|
|
8
|
+
|
|
7
9
|
```bash
|
|
8
10
|
npm install @axtary/config
|
|
9
11
|
```
|
|
@@ -19,7 +21,7 @@ npm install @axtary/config
|
|
|
19
21
|
|
|
20
22
|
## Adapter Config
|
|
21
23
|
|
|
22
|
-
GitHub defaults to
|
|
24
|
+
GitHub defaults to credential-free demo mode (the v0 config literal is `fake`):
|
|
23
25
|
|
|
24
26
|
```yaml
|
|
25
27
|
adapters:
|
|
@@ -38,7 +40,7 @@ adapters:
|
|
|
38
40
|
userAgent: axtary-local-proxy
|
|
39
41
|
```
|
|
40
42
|
|
|
41
|
-
Slack and Linear follow the same
|
|
43
|
+
Slack and Linear follow the same credential-free demo-first pattern:
|
|
42
44
|
|
|
43
45
|
```yaml
|
|
44
46
|
adapters:
|
|
@@ -88,7 +90,7 @@ policy:
|
|
|
88
90
|
Run `axtary connect drive --redirect-uri https://<tunnel>/callback`; the
|
|
89
91
|
`drive.file` token and selected file id stay in the local credential broker.
|
|
90
92
|
|
|
91
|
-
The CLI reads tokens from the named environment variables. Keep
|
|
93
|
+
The CLI reads tokens from the named environment variables. Keep credential-free demo mode for demos and tests; switch to the implemented live mode when you want provider calls.
|
|
92
94
|
|
|
93
95
|
Local docs are enabled by default and resolve roots relative to the config file:
|
|
94
96
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axtary/config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "YAML configuration loading for local Axtary runtime packages.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/Axtary/axtary.git",
|
|
11
11
|
"directory": "packages/config"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"types": "./dist/index.d.ts",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@axtary/actionpass": "^0.
|
|
44
|
-
"@axtary/policy": "^0.
|
|
43
|
+
"@axtary/actionpass": "^0.4.0",
|
|
44
|
+
"@axtary/policy": "^0.4.0",
|
|
45
45
|
"yaml": "^2.8.2",
|
|
46
46
|
"zod": "^4.4.3"
|
|
47
47
|
}
|