@@ -6,38 +6,39 @@ Need help with CapiscIO? Here are the best ways to get support.
66
77Start with the documentation for your specific product:
88
9- - ** [ A2A Security Documentation] ( ../a2a-security/index.md ) ** - Security middleware guides and API reference
10- - ** [ CapiscIO CLI Documentation] ( ../capiscio-cli/README.md ) ** - Command-line tools and validation
9+ - ** [ Python SDK Documentation] ( ../capiscio-python-sdk/index.md ) ** - Security middleware guides and API reference
10+ - ** [ Node.js CLI Documentation] ( ../capiscio-node-js-cli/index.md ) ** - Command-line tools and validation
11+ - ** [ Python CLI Documentation] ( ../capiscio-python-cli/index.md ) ** - Python wrapper for the CLI
1112
1213## Quick Links
1314
1415### Getting Started
1516
16- - [ A2A Security Quick Start] ( ../a2a-security /getting-started/quickstart.md )
17- - [ CapiscIO CLI Getting Started] ( ../capiscio-cli/README .md )
17+ - [ Python SDK Quick Start] ( ../capiscio-python-sdk /getting-started/quickstart.md )
18+ - [ Node.js CLI Getting Started] ( ../capiscio-node-js- cli/index .md )
1819- [ A2A Protocol Specification] ( https://github.com/a2aproject/A2A ) {: target ="_ blank"}
1920
2021### Common Tasks
2122
22- ** For A2A Security :**
23+ ** For Python SDK :**
2324
24- - [ Installation & Setup] ( ../a2a-security /getting-started/installation.md )
25- - [ Configuration Guide] ( ../a2a-security /guides/configuration.md )
26- - [ Core Concepts] ( ../a2a-security /getting-started/concepts/ )
25+ - [ Installation & Setup] ( ../capiscio-python-sdk /getting-started/installation.md )
26+ - [ Configuration Guide] ( ../capiscio-python-sdk /guides/configuration.md )
27+ - [ Core Concepts] ( ../capiscio-python-sdk /getting-started/concepts.md )
2728
28- ** For CapiscIO CLI:**
29+ ** For Node.js CLI:**
2930
30- - [ Validation Process] ( ../capiscio-cli /validation-process .md )
31- - [ Scoring System] ( ../capiscio-cli /scoring-system/ )
32- - [ Architecture] ( ../capiscio-cli/architecture.md )
31+ - [ Validation Process] ( ../concepts /validation.md )
32+ - [ Scoring System] ( ../concepts /scoring.md )
33+ - [ Architecture] ( ../capiscio-node-js- cli/reference /architecture.md )
3334
3435## GitHub Resources
3536
3637### Issues & Bug Reports
3738
3839Report bugs or request features in the relevant repository:
3940
40- - [ A2A Security Issues] ( https://github.com/capiscio/a2a-security /issues ) {: target ="_ blank"}
41+ - [ Python SDK Issues] ( https://github.com/capiscio/capiscio-sdk-python /issues ) {: target ="_ blank"}
4142- [ CapiscIO CLI Issues] ( https://github.com/capiscio/capiscio-cli/issues ) {: target ="_ blank"}
4243- [ Documentation Issues] ( https://github.com/capiscio/capiscio-docs/issues ) {: target ="_ blank"}
4344
@@ -60,10 +61,10 @@ Want to contribute? See our [Contributing Guide](contributing.md) for details on
6061
6162## Package Resources
6263
63- ### Python (A2A Security )
64+ ### Python (SDK )
6465
65- - ** PyPI** : [ a2a-security package] ( https://pypi.org/project/a2a-security.md )
66- - ** Installation** : ` pip install a2a-security `
66+ - ** PyPI** : [ capiscio-sdk-python package] ( https://pypi.org/project/capiscio-sdk-python/ )
67+ - ** Installation** : ` pip install capiscio-sdk-python `
6768- ** Requirements** : Python 3.10+
6869
6970### Node.js (CapiscIO CLI)
@@ -87,22 +88,22 @@ CapiscIO implements the Agent-to-Agent (A2A) Protocol. Learn more:
8788We welcome contributions! Check out:
8889
8990- [ Contributing Guidelines] ( contributing.md )
90- - [ Code of Conduct] ( https://github.com/capiscio/a2a-security /blob/main/CODE_OF_CONDUCT.md )
91- - [ Security Policy] ( https://github.com/capiscio/a2a-security /blob/main/SECURITY.md )
91+ - [ Code of Conduct] ( https://github.com/capiscio/capiscio-sdk-python /blob/main/CODE_OF_CONDUCT.md )
92+ - [ Security Policy] ( https://github.com/capiscio/capiscio-sdk-python /blob/main/SECURITY.md )
9293
9394### Stay Updated
9495
9596- ** GitHub** : Watch the repositories for updates
96- - [ capiscio/a2a-security ] ( https://github.com/capiscio/a2a-security )
97- - [ capiscio/capiscio-cli ] ( https://github.com/capiscio/capiscio-cli )
98- - ** Releases** : Check [ Releases] ( https://github.com/capiscio/a2a-security /releases ) for changelogs
97+ - [ capiscio/capiscio-sdk-python ] ( https://github.com/capiscio/capiscio-sdk-python )
98+ - [ capiscio/capiscio-node ] ( https://github.com/capiscio/capiscio-node )
99+ - ** Releases** : Check [ Releases] ( https://github.com/capiscio/capiscio-sdk-python /releases ) for changelogs
99100
100101## Security Issues
101102
102103Found a security vulnerability? Please report it responsibly:
103104
104105- ** Do not** open a public issue
105- - See [ Security Policy] ( https://github.com/capiscio/a2a-security /blob/main/SECURITY.md ) for reporting process
106+ - See [ Security Policy] ( https://github.com/capiscio/capiscio-sdk-python /blob/main/SECURITY.md ) for reporting process
106107- Security issues are handled with priority
107108
108109## Frequently Asked Questions
@@ -112,13 +113,13 @@ Found a security vulnerability? Please report it responsibly:
112113
113114### Installation Issues
114115
115- ** Q: ` pip install capiscio-a2a-security ` fails**
116+ ** Q: ` pip install capiscio-sdk-python ` fails**
116117
117118A: Ensure you have Python 3.10 or higher:
118119``` bash
119120python --version
120121pip install --upgrade pip
121- pip install a2a-security
122+ pip install capiscio-sdk-python
122123```
123124
124125** Q: CLI command not found after installation**
@@ -140,7 +141,7 @@ capiscio validate path/to/agent-card.json
140141
141142Or programmatically with Python:
142143``` python
143- from a2a_security import validate_message
144+ from capiscio_sdk import validate_message
144145
145146result = validate_message(message_data)
146147```
@@ -155,9 +156,9 @@ A: Check the [CLI repository examples](https://github.com/capiscio/capiscio-cli/
155156
156157A: Each repository has its own test suite:
157158
158- ** A2A Security ** :
159+ ** Python SDK ** :
159160``` bash
160- cd a2a-security
161+ cd capiscio-sdk-python
161162pip install -e " .[dev]"
162163pytest
163164```
@@ -182,7 +183,7 @@ mkdocs serve
182183
183184If you can't find what you're looking for:
184185
185- 1 . Search existing [ GitHub Issues] ( https://github.com/capiscio/a2a-security /issues )
186+ 1 . Search existing [ GitHub Issues] ( https://github.com/capiscio/capiscio-sdk-python /issues )
1861872 . Check the [ A2A Specification] ( https://github.com/a2aproject/A2A )
1871883 . Open a new issue with details about your problem
188189
0 commit comments