apcore-a2a 0.2.1 → 0.2.2
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 +8 -8
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/
|
|
2
|
+
<img src="https://raw.githubusercontent.com/aiperceivable/apcore-a2a/main/apcore-a2a-logo.svg" alt="apcore-a2a logo" width="200"/>
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
5
|
# apcore-a2a (TypeScript)
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
[](https://www.npmjs.com/package/apcore-a2a)
|
|
8
8
|
[](https://www.npmjs.com/package/apcore-a2a)
|
|
9
9
|
[](LICENSE)
|
|
10
|
-
[](https://github.com/
|
|
10
|
+
[](https://github.com/aiperceivable/apcore-a2a-typescript)
|
|
11
11
|
|
|
12
12
|
## What is apcore-a2a?
|
|
13
13
|
|
|
14
|
-
**apcore-a2a** is the [A2A (Agent-to-Agent)](https://google.github.io/A2A/) protocol adapter for the [apcore](https://github.com/
|
|
14
|
+
**apcore-a2a** is the [A2A (Agent-to-Agent)](https://google.github.io/A2A/) protocol adapter for the [apcore](https://github.com/aiperceivable/apcore-typescript) ecosystem.
|
|
15
15
|
|
|
16
16
|
It solves a common problem: **you've built AI capabilities with apcore modules, but you need them to talk to other AI agents over a standard protocol.** apcore-a2a bridges that gap — it reads your existing module metadata (schemas, descriptions, examples) and automatically exposes them as a standards-compliant A2A server. No hand-written Agent Cards, no JSON-RPC boilerplate, no manual task lifecycle management.
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ It solves a common problem: **you've built AI capabilities with apcore modules,
|
|
|
19
19
|
|
|
20
20
|
Built on [`@a2a-js/sdk`](https://www.npmjs.com/package/@a2a-js/sdk) and [Express 5](https://expressjs.com/).
|
|
21
21
|
|
|
22
|
-
> **Also available in Python:** [`apcore-a2a` (PyPI)](https://github.com/
|
|
22
|
+
> **Also available in Python:** [`apcore-a2a` (PyPI)](https://github.com/aiperceivable/apcore-a2a-python)
|
|
23
23
|
|
|
24
24
|
## Features
|
|
25
25
|
|
|
@@ -233,7 +233,7 @@ See [`examples/README.md`](examples/README.md) for details on class-based vs pro
|
|
|
233
233
|
### Contributing
|
|
234
234
|
|
|
235
235
|
```bash
|
|
236
|
-
git clone https://github.com/
|
|
236
|
+
git clone https://github.com/aiperceivable/apcore-a2a-typescript.git
|
|
237
237
|
cd apcore-a2a-typescript
|
|
238
238
|
npm install
|
|
239
239
|
npm test
|
|
@@ -241,9 +241,9 @@ npm test
|
|
|
241
241
|
|
|
242
242
|
## Documentation
|
|
243
243
|
|
|
244
|
-
- [Product Requirements (PRD)](https://github.com/
|
|
245
|
-
- [Technical Design](https://github.com/
|
|
246
|
-
- [Software Requirements (SRS)](https://github.com/
|
|
244
|
+
- [Product Requirements (PRD)](https://github.com/aiperceivable/apcore-a2a/blob/main/docs/apcore-a2a/prd.md)
|
|
245
|
+
- [Technical Design](https://github.com/aiperceivable/apcore-a2a/blob/main/docs/apcore-a2a/tech-design.md)
|
|
246
|
+
- [Software Requirements (SRS)](https://github.com/aiperceivable/apcore-a2a/blob/main/docs/apcore-a2a/srs.md)
|
|
247
247
|
|
|
248
248
|
## License
|
|
249
249
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apcore-a2a",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Automatic A2A Protocol Adapter for apcore Module Registry",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"license": "Apache-2.0",
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
|
59
|
-
"url": "https://github.com/
|
|
59
|
+
"url": "https://github.com/aiperceivable/apcore-a2a-typescript.git"
|
|
60
60
|
},
|
|
61
|
-
"homepage": "https://
|
|
61
|
+
"homepage": "https://aiperceivable.com",
|
|
62
62
|
"bugs": {
|
|
63
|
-
"url": "https://github.com/
|
|
63
|
+
"url": "https://github.com/aiperceivable/apcore-a2a-typescript/issues"
|
|
64
64
|
},
|
|
65
65
|
"keywords": [
|
|
66
66
|
"apcore",
|