agentic-mesh-protocol 0.2.1.dev0__py3-none-any.whl
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.
- agentic_mesh_protocol/__init__.py +5 -0
- agentic_mesh_protocol/__version__.py +8 -0
- agentic_mesh_protocol/cost/__init__.py +0 -0
- agentic_mesh_protocol/cost/v1/__init__.py +0 -0
- agentic_mesh_protocol/cost/v1/cost_pb2.py +108 -0
- agentic_mesh_protocol/cost/v1/cost_pb2.pyi +120 -0
- agentic_mesh_protocol/cost/v1/cost_pb2_grpc.py +4 -0
- agentic_mesh_protocol/cost/v1/cost_service_pb2.py +38 -0
- agentic_mesh_protocol/cost/v1/cost_service_pb2.pyi +5 -0
- agentic_mesh_protocol/cost/v1/cost_service_pb2_grpc.py +169 -0
- agentic_mesh_protocol/filesystem/__init__.py +0 -0
- agentic_mesh_protocol/filesystem/v1/__init__.py +0 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_pb2.py +160 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_pb2.pyi +248 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_pb2_grpc.py +4 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.py +38 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.pyi +5 -0
- agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2_grpc.py +274 -0
- agentic_mesh_protocol/module/__init__.py +0 -0
- agentic_mesh_protocol/module/v1/__init__.py +0 -0
- agentic_mesh_protocol/module/v1/information_pb2.py +77 -0
- agentic_mesh_protocol/module/v1/information_pb2.pyi +88 -0
- agentic_mesh_protocol/module/v1/information_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module/v1/lifecycle_pb2.py +70 -0
- agentic_mesh_protocol/module/v1/lifecycle_pb2.pyi +61 -0
- agentic_mesh_protocol/module/v1/lifecycle_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module/v1/module_service_pb2.py +40 -0
- agentic_mesh_protocol/module/v1/module_service_pb2.pyi +7 -0
- agentic_mesh_protocol/module/v1/module_service_pb2_grpc.py +500 -0
- agentic_mesh_protocol/module/v1/monitoring_pb2.py +58 -0
- agentic_mesh_protocol/module/v1/monitoring_pb2.pyi +64 -0
- agentic_mesh_protocol/module/v1/monitoring_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/__init__.py +0 -0
- agentic_mesh_protocol/module_registry/v1/__init__.py +0 -0
- agentic_mesh_protocol/module_registry/v1/discover_pb2.py +63 -0
- agentic_mesh_protocol/module_registry/v1/discover_pb2.pyi +49 -0
- agentic_mesh_protocol/module_registry/v1/discover_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/v1/metadata_pb2.py +46 -0
- agentic_mesh_protocol/module_registry/v1/metadata_pb2.pyi +24 -0
- agentic_mesh_protocol/module_registry/v1/metadata_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.py +40 -0
- agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.pyi +7 -0
- agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2_grpc.py +406 -0
- agentic_mesh_protocol/module_registry/v1/registration_pb2.py +57 -0
- agentic_mesh_protocol/module_registry/v1/registration_pb2.pyi +42 -0
- agentic_mesh_protocol/module_registry/v1/registration_pb2_grpc.py +4 -0
- agentic_mesh_protocol/module_registry/v1/status_pb2.py +58 -0
- agentic_mesh_protocol/module_registry/v1/status_pb2.pyi +70 -0
- agentic_mesh_protocol/module_registry/v1/status_pb2_grpc.py +4 -0
- agentic_mesh_protocol/py.typed +0 -0
- agentic_mesh_protocol/registry/__init__.py +0 -0
- agentic_mesh_protocol/registry/v1/__init__.py +0 -0
- agentic_mesh_protocol/registry/v1/registry_enums_pb2.py +43 -0
- agentic_mesh_protocol/registry/v1/registry_enums_pb2.pyi +59 -0
- agentic_mesh_protocol/registry/v1/registry_enums_pb2_grpc.py +4 -0
- agentic_mesh_protocol/registry/v1/registry_models_pb2.py +105 -0
- agentic_mesh_protocol/registry/v1/registry_models_pb2.pyi +82 -0
- agentic_mesh_protocol/registry/v1/registry_models_pb2_grpc.py +4 -0
- agentic_mesh_protocol/registry/v1/registry_requests_pb2.py +110 -0
- agentic_mesh_protocol/registry/v1/registry_requests_pb2.pyi +102 -0
- agentic_mesh_protocol/registry/v1/registry_requests_pb2_grpc.py +4 -0
- agentic_mesh_protocol/registry/v1/registry_service_pb2.py +39 -0
- agentic_mesh_protocol/registry/v1/registry_service_pb2.pyi +6 -0
- agentic_mesh_protocol/registry/v1/registry_service_pb2_grpc.py +322 -0
- agentic_mesh_protocol/setup/__init__.py +0 -0
- agentic_mesh_protocol/setup/v1/__init__.py +0 -0
- agentic_mesh_protocol/setup/v1/setup_pb2.py +142 -0
- agentic_mesh_protocol/setup/v1/setup_pb2.pyi +234 -0
- agentic_mesh_protocol/setup/v1/setup_pb2_grpc.py +4 -0
- agentic_mesh_protocol/setup/v1/setup_service_pb2.py +38 -0
- agentic_mesh_protocol/setup/v1/setup_service_pb2.pyi +5 -0
- agentic_mesh_protocol/setup/v1/setup_service_pb2_grpc.py +480 -0
- agentic_mesh_protocol/storage/__init__.py +0 -0
- agentic_mesh_protocol/storage/v1/__init__.py +0 -0
- agentic_mesh_protocol/storage/v1/data_pb2.py +136 -0
- agentic_mesh_protocol/storage/v1/data_pb2.pyi +148 -0
- agentic_mesh_protocol/storage/v1/data_pb2_grpc.py +4 -0
- agentic_mesh_protocol/storage/v1/storage_service_pb2.py +38 -0
- agentic_mesh_protocol/storage/v1/storage_service_pb2.pyi +5 -0
- agentic_mesh_protocol/storage/v1/storage_service_pb2_grpc.py +301 -0
- agentic_mesh_protocol/user_profile/__init__.py +0 -0
- agentic_mesh_protocol/user_profile/v1/__init__.py +0 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_pb2.py +72 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_pb2.pyi +82 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_pb2_grpc.py +4 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.py +38 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.pyi +5 -0
- agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2_grpc.py +81 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/METADATA +177 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/RECORD +100 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/WHEEL +5 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/licenses/LICENSE +430 -0
- agentic_mesh_protocol-0.2.1.dev0.dist-info/top_level.txt +3 -0
- buf/__init__.py +0 -0
- buf/validate/__init__.py +0 -0
- buf/validate/validate_pb2.py +465 -0
- buf/validate/validate_pb2.pyi +650 -0
- buf/validate/validate_pb2_grpc.py +4 -0
- digitalkin_proto/__init__.py +5 -0
- digitalkin_proto/__version__.py +8 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: agentic_mesh_protocol/user_profile/v1/user_profile_service.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
33,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'agentic_mesh_protocol/user_profile/v1/user_profile_service.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from agentic_mesh_protocol.user_profile.v1 import user_profile_pb2 as agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n@agentic_mesh_protocol/user_profile/v1/user_profile_service.proto\x12%agentic_mesh_protocol.user_profile.v1\x1a\x38\x61gentic_mesh_protocol/user_profile/v1/user_profile.proto2\xa4\x01\n\x12UserProfileService\x12\x8d\x01\n\x0eGetUserProfile\x12<.agentic_mesh_protocol.user_profile.v1.GetUserProfileRequest\x1a=.agentic_mesh_protocol.user_profile.v1.GetUserProfileResponseB\xee\x01\n)com.agentic_mesh_protocol.user_profile.v1B\x17UserProfileServiceProtoP\x01\xa2\x02\x03\x41UX\xaa\x02\"AgenticMeshProtocol.UserProfile.V1\xca\x02\"AgenticMeshProtocol\\UserProfile\\V1\xe2\x02.AgenticMeshProtocol\\UserProfile\\V1\\GPBMetadata\xea\x02$AgenticMeshProtocol::UserProfile::V1b\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'agentic_mesh_protocol.user_profile.v1.user_profile_service_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n)com.agentic_mesh_protocol.user_profile.v1B\027UserProfileServiceProtoP\001\242\002\003AUX\252\002\"AgenticMeshProtocol.UserProfile.V1\312\002\"AgenticMeshProtocol\\UserProfile\\V1\342\002.AgenticMeshProtocol\\UserProfile\\V1\\GPBMetadata\352\002$AgenticMeshProtocol::UserProfile::V1'
|
|
36
|
+
_globals['_USERPROFILESERVICE']._serialized_start=166
|
|
37
|
+
_globals['_USERPROFILESERVICE']._serialized_end=330
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from agentic_mesh_protocol.user_profile.v1 import user_profile_pb2 as agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class UserProfileServiceStub(object):
|
|
9
|
+
"""UserProfileService: Service to manage user profiles
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
def __init__(self, channel):
|
|
13
|
+
"""Constructor.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
channel: A grpc.Channel.
|
|
17
|
+
"""
|
|
18
|
+
self.GetUserProfile = channel.unary_unary(
|
|
19
|
+
'/agentic_mesh_protocol.user_profile.v1.UserProfileService/GetUserProfile',
|
|
20
|
+
request_serializer=agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2.GetUserProfileRequest.SerializeToString,
|
|
21
|
+
response_deserializer=agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2.GetUserProfileResponse.FromString,
|
|
22
|
+
_registered_method=True)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class UserProfileServiceServicer(object):
|
|
26
|
+
"""UserProfileService: Service to manage user profiles
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
def GetUserProfile(self, request, context):
|
|
30
|
+
"""GetUserProfile: Get a user profile by user ID
|
|
31
|
+
"""
|
|
32
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
33
|
+
context.set_details('Method not implemented!')
|
|
34
|
+
raise NotImplementedError('Method not implemented!')
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def add_UserProfileServiceServicer_to_server(servicer, server):
|
|
38
|
+
rpc_method_handlers = {
|
|
39
|
+
'GetUserProfile': grpc.unary_unary_rpc_method_handler(
|
|
40
|
+
servicer.GetUserProfile,
|
|
41
|
+
request_deserializer=agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2.GetUserProfileRequest.FromString,
|
|
42
|
+
response_serializer=agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2.GetUserProfileResponse.SerializeToString,
|
|
43
|
+
),
|
|
44
|
+
}
|
|
45
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
46
|
+
'agentic_mesh_protocol.user_profile.v1.UserProfileService', rpc_method_handlers)
|
|
47
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
48
|
+
server.add_registered_method_handlers('agentic_mesh_protocol.user_profile.v1.UserProfileService', rpc_method_handlers)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
# This class is part of an EXPERIMENTAL API.
|
|
52
|
+
class UserProfileService(object):
|
|
53
|
+
"""UserProfileService: Service to manage user profiles
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
@staticmethod
|
|
57
|
+
def GetUserProfile(request,
|
|
58
|
+
target,
|
|
59
|
+
options=(),
|
|
60
|
+
channel_credentials=None,
|
|
61
|
+
call_credentials=None,
|
|
62
|
+
insecure=False,
|
|
63
|
+
compression=None,
|
|
64
|
+
wait_for_ready=None,
|
|
65
|
+
timeout=None,
|
|
66
|
+
metadata=None):
|
|
67
|
+
return grpc.experimental.unary_unary(
|
|
68
|
+
request,
|
|
69
|
+
target,
|
|
70
|
+
'/agentic_mesh_protocol.user_profile.v1.UserProfileService/GetUserProfile',
|
|
71
|
+
agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2.GetUserProfileRequest.SerializeToString,
|
|
72
|
+
agentic__mesh__protocol_dot_user__profile_dot_v1_dot_user__profile__pb2.GetUserProfileResponse.FromString,
|
|
73
|
+
options,
|
|
74
|
+
channel_credentials,
|
|
75
|
+
insecure,
|
|
76
|
+
call_credentials,
|
|
77
|
+
compression,
|
|
78
|
+
wait_for_ready,
|
|
79
|
+
timeout,
|
|
80
|
+
metadata,
|
|
81
|
+
_registered_method=True)
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentic-mesh-protocol
|
|
3
|
+
Version: 0.2.1.dev0
|
|
4
|
+
Summary: Python gRPC interfaces for Agentic Mesh Protocol
|
|
5
|
+
Author-email: "DigitalKin.ai" <contact@digitalkin.ai>
|
|
6
|
+
Project-URL: Homepage, https://github.com/DigitalKin-ai/service-apis-py
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/DigitalKin-ai/service-apis-py/issues
|
|
8
|
+
Project-URL: Documentation, https://github.com/DigitalKin-ai/service-apis-py/blob/main/README.md
|
|
9
|
+
Keywords: digitalkin,agentic-mesh,agent,grpc,sdk,protocol
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Classifier: License :: Other/Proprietary License
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: googleapis-common-protos>=1.72.0
|
|
26
|
+
Requires-Dist: protovalidate>=1.0.0
|
|
27
|
+
Requires-Dist: grpcio>=1.76.0
|
|
28
|
+
Requires-Dist: grpcio-tools>=1.76.0
|
|
29
|
+
Requires-Dist: protobuf>=6.33.1
|
|
30
|
+
Requires-Dist: bump-my-version>=1.2.4
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# agentic-mesh-protocol
|
|
34
|
+
|
|
35
|
+
[](https://github.com/DigitalKin-ai/service-apis-py/actions/workflows/ci.yml)
|
|
36
|
+
[](https://pypi.org/project/agentic-mesh-protocol/)
|
|
37
|
+
[](https://pypi.org/project/agentic-mesh-protocol/)
|
|
38
|
+
[](https://github.com/DigitalKin-ai/service-apis-py/blob/main/LICENSE)
|
|
39
|
+
|
|
40
|
+
Python gRPC interfaces for the Agentic Mesh Protocol.
|
|
41
|
+
|
|
42
|
+
## Installation
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
pip install agentic-mesh-protocol
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Overview
|
|
49
|
+
|
|
50
|
+
This package provides Python interfaces generated from Agentic Mesh Protocol
|
|
51
|
+
Buffer definitions, enabling seamless integration with agentic mesh services via
|
|
52
|
+
gRPC.
|
|
53
|
+
|
|
54
|
+
## Usage
|
|
55
|
+
|
|
56
|
+
### Basic Import
|
|
57
|
+
|
|
58
|
+
```python
|
|
59
|
+
import agentic_mesh_protocol
|
|
60
|
+
from agentic_mesh_protocol.module.v1 import information_pb2, module_service_pb2_grpc
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Working with gRPC Services
|
|
64
|
+
|
|
65
|
+
Example for connecting to a gRPC service:
|
|
66
|
+
|
|
67
|
+
```python
|
|
68
|
+
import grpc
|
|
69
|
+
from agentic_mesh_protocol.module.v1 import module_service_pb2_grpc
|
|
70
|
+
from agentic_mesh_protocol.module.v1 import information_pb2
|
|
71
|
+
|
|
72
|
+
# Create a gRPC channel and client stub
|
|
73
|
+
channel = grpc.insecure_channel('localhost:50051')
|
|
74
|
+
stub = module_service_pb2_grpc.ModuleServiceStub(channel)
|
|
75
|
+
|
|
76
|
+
# Create a request object
|
|
77
|
+
request = information_pb2.GetModuleInputRequest(
|
|
78
|
+
module_id="my-module-id"
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
# Call the service
|
|
82
|
+
response = stub.GetModuleInput(request)
|
|
83
|
+
print(response)
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Development
|
|
87
|
+
|
|
88
|
+
### Prerequisites
|
|
89
|
+
|
|
90
|
+
- Python 3.10+
|
|
91
|
+
- [uv](https://astral.sh/uv) - Modern Python package management
|
|
92
|
+
- [Task](https://taskfile.dev/) - Task runner
|
|
93
|
+
- rsync - For copying generated files
|
|
94
|
+
|
|
95
|
+
Note: `buf` and `protoc` are handled by the submodule via npx, no local installation needed
|
|
96
|
+
|
|
97
|
+
### Setup Development Environment
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
# Clone the repository with submodules
|
|
101
|
+
git clone --recurse-submodules https://github.com/DigitalKin-ai/service-apis-py.git
|
|
102
|
+
cd service-apis-py
|
|
103
|
+
|
|
104
|
+
# Setup development environment
|
|
105
|
+
task setup
|
|
106
|
+
|
|
107
|
+
# Or use the quick dev setup command
|
|
108
|
+
task dev
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### Local Installation & Testing
|
|
112
|
+
|
|
113
|
+
To test the package locally before publishing:
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
# Install the package in editable mode
|
|
117
|
+
uv pip install -e .
|
|
118
|
+
|
|
119
|
+
# Or with pip
|
|
120
|
+
pip install -e .
|
|
121
|
+
|
|
122
|
+
# Run the local test script
|
|
123
|
+
python test_local.py
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
To test the package in an isolated environment (simulates a fresh install):
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# Using uv (recommended)
|
|
130
|
+
uv run --with . --no-project -- python test_local.py
|
|
131
|
+
|
|
132
|
+
# Or create a fresh venv
|
|
133
|
+
python -m venv /tmp/test-amp
|
|
134
|
+
source /tmp/test-amp/bin/activate
|
|
135
|
+
pip install .
|
|
136
|
+
python test_local.py
|
|
137
|
+
deactivate
|
|
138
|
+
rm -rf /tmp/test-amp
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### Common Development Tasks
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
# Generate Python code from protobuf definitions
|
|
145
|
+
task gen
|
|
146
|
+
|
|
147
|
+
# Build the package
|
|
148
|
+
task build
|
|
149
|
+
|
|
150
|
+
# Run tests
|
|
151
|
+
task test
|
|
152
|
+
|
|
153
|
+
# Format code
|
|
154
|
+
task fmt
|
|
155
|
+
|
|
156
|
+
# Lint code
|
|
157
|
+
task lint
|
|
158
|
+
|
|
159
|
+
# Clean build artifacts
|
|
160
|
+
task clean
|
|
161
|
+
|
|
162
|
+
# Bump version
|
|
163
|
+
task bump-version -- patch
|
|
164
|
+
task bump-version -- minor
|
|
165
|
+
task bump-version -- major
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
### Publishing Process
|
|
169
|
+
|
|
170
|
+
1. Update code and commit changes
|
|
171
|
+
2. Use the GitHub "Create Release" workflow to bump version (patch, minor,
|
|
172
|
+
major)
|
|
173
|
+
3. The workflow will automatically create a new release and publish to PyPI
|
|
174
|
+
|
|
175
|
+
## License
|
|
176
|
+
|
|
177
|
+
This project is licensed under the terms specified in the LICENSE file.
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
agentic_mesh_protocol/__init__.py,sha256=kAb731TxLudbtt2vZsebF7PP7Z8AaEDOp93TBgy6VUg,140
|
|
2
|
+
agentic_mesh_protocol/__version__.py,sha256=Wp1eZF-qYnxyIZ--kWLrBQ752yY0cjEfalIZ-X71VeE,235
|
|
3
|
+
agentic_mesh_protocol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
agentic_mesh_protocol/cost/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
agentic_mesh_protocol/cost/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
agentic_mesh_protocol/cost/v1/cost_pb2.py,sha256=UXDD78r4e87v-okEJ05jkTjCsfkP9HTS685-coaThug,11894
|
|
7
|
+
agentic_mesh_protocol/cost/v1/cost_pb2.pyi,sha256=t_kgA-5Bxyb-4whNfaQMnTM3q3sSJ8xhOZtv_gK7Ofg,4981
|
|
8
|
+
agentic_mesh_protocol/cost/v1/cost_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
9
|
+
agentic_mesh_protocol/cost/v1/cost_service_pb2.py,sha256=TeR-kpBaxA7mjXgyomxJ2XdiIJ5fH4PJ6JxRJEHwbL0,2517
|
|
10
|
+
agentic_mesh_protocol/cost/v1/cost_service_pb2.pyi,sha256=ITirNKgTrFESUMKsF1GD1apOfYffRh5gsMU6F3343F4,199
|
|
11
|
+
agentic_mesh_protocol/cost/v1/cost_service_pb2_grpc.py,sha256=GbeFMKBd0idmlNnpMUmp4mFOMqAuheyf4EYfYWJtbnU,7077
|
|
12
|
+
agentic_mesh_protocol/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
agentic_mesh_protocol/filesystem/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
agentic_mesh_protocol/filesystem/v1/filesystem_pb2.py,sha256=lWWuVynDnEIo81vcT0y0fRLCdU2WhdWGDMp5gVdIm3Q,20326
|
|
15
|
+
agentic_mesh_protocol/filesystem/v1/filesystem_pb2.pyi,sha256=AchyYYLK_hiGuutgAx37cdeGcEylBPG0zjonR5ooN6Q,11272
|
|
16
|
+
agentic_mesh_protocol/filesystem/v1/filesystem_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
17
|
+
agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.py,sha256=os8R_9P8hh7AGYWm_X6pKP6v6anoPafLw23ZvIBefEY,3037
|
|
18
|
+
agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2.pyi,sha256=1D3gG1Fel8LOlNNFxcuKHPq8SgLxcGpvl-RPxn4Aud8,217
|
|
19
|
+
agentic_mesh_protocol/filesystem/v1/filesystem_service_pb2_grpc.py,sha256=2sRBcn83n4xsvAvZjQp2rBLShUllaeo5VWV3rsF_OXg,12689
|
|
20
|
+
agentic_mesh_protocol/module/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
agentic_mesh_protocol/module/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
agentic_mesh_protocol/module/v1/information_pb2.py,sha256=oohRQR7I5wMbcBUoaaoYiNz0oq8DIK_Nw0NIq_XBMRc,7494
|
|
23
|
+
agentic_mesh_protocol/module/v1/information_pb2.pyi,sha256=cHX0WkK12HZXbhiT26--T-3c3vGjVOiqUuI7l8fweo8,3648
|
|
24
|
+
agentic_mesh_protocol/module/v1/information_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
25
|
+
agentic_mesh_protocol/module/v1/lifecycle_pb2.py,sha256=LT6wgcIW0fN-CZCfQ80zR-jIo7KzKrWB5xFOckWrEeM,6519
|
|
26
|
+
agentic_mesh_protocol/module/v1/lifecycle_pb2.pyi,sha256=TxJXdrSTW1YFzEvehLzi7z1HISodX0h96qE521dJ1rU,2611
|
|
27
|
+
agentic_mesh_protocol/module/v1/lifecycle_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
28
|
+
agentic_mesh_protocol/module/v1/module_service_pb2.py,sha256=SJ3ecdTi1MDXh00D6NAxfPE4QUsq53WN_cTpTThwnAw,4125
|
|
29
|
+
agentic_mesh_protocol/module/v1/module_service_pb2.pyi,sha256=Tvwq5limL5Bye5PKiQWUAxC1NKrCxmW_fQc_Qqyh_uU,369
|
|
30
|
+
agentic_mesh_protocol/module/v1/module_service_pb2_grpc.py,sha256=p7K3cDbNZDwDAwCGQXWcFwzQ5sATc7Ap3niyYw9otFc,24000
|
|
31
|
+
agentic_mesh_protocol/module/v1/monitoring_pb2.py,sha256=RXu6JWWWF-FuHuC0vyk-vqgY_omlLvN8MGe6qsvdZdI,4965
|
|
32
|
+
agentic_mesh_protocol/module/v1/monitoring_pb2.pyi,sha256=PUS-CmxQgDy458SRjJbx140T2DmeybyR_sBIo4u5FsE,2643
|
|
33
|
+
agentic_mesh_protocol/module/v1/monitoring_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
34
|
+
agentic_mesh_protocol/module_registry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
agentic_mesh_protocol/module_registry/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
agentic_mesh_protocol/module_registry/v1/discover_pb2.py,sha256=QziiPHt1bC8zebY3Cm5P4nEVS2uNnrv9YoBiUM0jwYk,6201
|
|
37
|
+
agentic_mesh_protocol/module_registry/v1/discover_pb2.pyi,sha256=qID2_v9JcWv3LB9OkEH7LYsgypb7pvCPZWQp4zFqDR4,2263
|
|
38
|
+
agentic_mesh_protocol/module_registry/v1/discover_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
39
|
+
agentic_mesh_protocol/module_registry/v1/metadata_pb2.py,sha256=ma-DZ6Kt7xcHOu-1XWz2Cy5KdXu2BTFMUFdY0bb_rt0,3220
|
|
40
|
+
agentic_mesh_protocol/module_registry/v1/metadata_pb2.pyi,sha256=D78WVf-7Ct3jiArTS2KovFqJePwSW0BZ3sCbUVFBf54,999
|
|
41
|
+
agentic_mesh_protocol/module_registry/v1/metadata_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
42
|
+
agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.py,sha256=JF_DCSxygmQzlFnMw3VZN9gi_D8uipvOoBIIsbkxuYY,4256
|
|
43
|
+
agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2.pyi,sha256=Aem-CJzF5S7eQLaeUBdeTLnfn-CX3Ql0msfzLoFM5aQ,388
|
|
44
|
+
agentic_mesh_protocol/module_registry/v1/module_registry_service_pb2_grpc.py,sha256=b8mnD3tBgz1O-aEg3Z4Wr53sTrr3B9DCZznbGj2V_fA,20268
|
|
45
|
+
agentic_mesh_protocol/module_registry/v1/registration_pb2.py,sha256=7DY5JAf8TEUQaT5yfJnX2qPVCXze6HE_iww3XehRcWA,4905
|
|
46
|
+
agentic_mesh_protocol/module_registry/v1/registration_pb2.pyi,sha256=XPTeXcA4R6-TkjOnKdWdpCvJa02EeHs4bdrvC1sQk2E,1682
|
|
47
|
+
agentic_mesh_protocol/module_registry/v1/registration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
48
|
+
agentic_mesh_protocol/module_registry/v1/status_pb2.py,sha256=AGdk8mZR7BzqQIJzdsZsmlP8AWJP5CO9-QYTfhZImRQ,5079
|
|
49
|
+
agentic_mesh_protocol/module_registry/v1/status_pb2.pyi,sha256=Y4m31f1TCVhs8hjEaI7bG4NOqITrYNvum0dHRqNkv98,2852
|
|
50
|
+
agentic_mesh_protocol/module_registry/v1/status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
51
|
+
agentic_mesh_protocol/registry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
+
agentic_mesh_protocol/registry/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
+
agentic_mesh_protocol/registry/v1/registry_enums_pb2.py,sha256=ZoO9pA_uj6M_gSTBGjDAR_p52WOAx1mkJ1KsHe-L6tw,3289
|
|
54
|
+
agentic_mesh_protocol/registry/v1/registry_enums_pb2.pyi,sha256=hKlFCpvMP1gEnMLElja7zLzX3z4sBeb-Z9wKhO1JSTQ,2418
|
|
55
|
+
agentic_mesh_protocol/registry/v1/registry_enums_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
56
|
+
agentic_mesh_protocol/registry/v1/registry_models_pb2.py,sha256=j_HqE3VyeMQdoPTG_9GqZdm4fEsPisSKkJsmN7N-bQ0,12464
|
|
57
|
+
agentic_mesh_protocol/registry/v1/registry_models_pb2.pyi,sha256=yDjT3PJ7iCVQvM0ITDtFTjH1DDb90SaKdE9vOZlWmA4,4528
|
|
58
|
+
agentic_mesh_protocol/registry/v1/registry_models_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
59
|
+
agentic_mesh_protocol/registry/v1/registry_requests_pb2.py,sha256=rNfCnEnl0exXfV1GcMQfmvwrqbze6QCRN3njhqD5Dok,12396
|
|
60
|
+
agentic_mesh_protocol/registry/v1/registry_requests_pb2.pyi,sha256=He6WeOYQiPVSsAmsxZdr-e8KWlNcfq_DJ3nmbMlTCnw,5209
|
|
61
|
+
agentic_mesh_protocol/registry/v1/registry_requests_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
62
|
+
agentic_mesh_protocol/registry/v1/registry_service_pb2.py,sha256=ePVCmHMw_gG48NT4P0OLO6BTXUG57HmzLfou0UGoU9s,3375
|
|
63
|
+
agentic_mesh_protocol/registry/v1/registry_service_pb2.pyi,sha256=eE7bJ5rTAZiARPSPG05knAOBZreFn2FOJypyab8byMg,319
|
|
64
|
+
agentic_mesh_protocol/registry/v1/registry_service_pb2_grpc.py,sha256=fIDwpI7zDIpoTHNOEhvPiDyQ8ursa2t7Ohlq14BDTh0,14736
|
|
65
|
+
agentic_mesh_protocol/setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
agentic_mesh_protocol/setup/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
+
agentic_mesh_protocol/setup/v1/setup_pb2.py,sha256=pzZ2vgAQNOD521iqSs9h17HWpqz9rbZDKgh0J_dyUKw,16145
|
|
68
|
+
agentic_mesh_protocol/setup/v1/setup_pb2.pyi,sha256=VfXVbl0JmxErHsH6YMGjj0N9j0KtrtIKZJVfAnArmSA,9692
|
|
69
|
+
agentic_mesh_protocol/setup/v1/setup_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
70
|
+
agentic_mesh_protocol/setup/v1/setup_service_pb2.py,sha256=Wcth7re-xY4VhnL2ZEZ5z2d5cnfiL7qbi85SQ8L-pEc,3675
|
|
71
|
+
agentic_mesh_protocol/setup/v1/setup_service_pb2.pyi,sha256=PqUhQZufh813tHRUU54zYhtq03BKTSagpOsrA1R39kc,202
|
|
72
|
+
agentic_mesh_protocol/setup/v1/setup_service_pb2_grpc.py,sha256=luANnKri20joQO6oi3vLKNR-hXGEfgK8bhJHw-sb8js,21684
|
|
73
|
+
agentic_mesh_protocol/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
+
agentic_mesh_protocol/storage/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
+
agentic_mesh_protocol/storage/v1/data_pb2.py,sha256=v5Nozk7punOkB_Ly-HjmX5TJoZ_grN3oCxCrNSufKOU,14505
|
|
76
|
+
agentic_mesh_protocol/storage/v1/data_pb2.pyi,sha256=Mm5JDwnxaYeg7QlG6SjrJt3gniAxgQ3KUqOw3AMMNo8,6153
|
|
77
|
+
agentic_mesh_protocol/storage/v1/data_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
78
|
+
agentic_mesh_protocol/storage/v1/storage_service_pb2.py,sha256=wECkjGH5-aTHyBFJQ3PjsJUFB21h09KG8XPoRik_MD8,3078
|
|
79
|
+
agentic_mesh_protocol/storage/v1/storage_service_pb2.pyi,sha256=4XrPZov-KIvVZCIPa3Efe8ENaNmS6LwvhfZ65mR98g4,202
|
|
80
|
+
agentic_mesh_protocol/storage/v1/storage_service_pb2_grpc.py,sha256=d8KeEiOFkNN-7OF644fqvU31k8I6iS-K6xqMM-POjBQ,13392
|
|
81
|
+
agentic_mesh_protocol/user_profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
+
agentic_mesh_protocol/user_profile/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
+
agentic_mesh_protocol/user_profile/v1/user_profile_pb2.py,sha256=14RLltfbCDv5gYPrWRY9zC6Ki0O5ieQRZxMi5ag_kBg,7082
|
|
84
|
+
agentic_mesh_protocol/user_profile/v1/user_profile_pb2.pyi,sha256=_bzOJVdij54LPZ3SxUKN9YasY1TD7xINgM63xZjP4pY,3860
|
|
85
|
+
agentic_mesh_protocol/user_profile/v1/user_profile_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
86
|
+
agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.py,sha256=qurdZOyq40MhilDNSFRlAqJPxE7n4TiBoxXoo6PgzXA,2503
|
|
87
|
+
agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.pyi,sha256=bYDO6_YCbjKbajOXMcjaWIljSqrtazhaHnAG_ovmsGE,223
|
|
88
|
+
agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2_grpc.py,sha256=ZM4LGHSHGnpNbbW6Q8pp6gdlbFIxPjD5CqASmD7ow7M,3388
|
|
89
|
+
agentic_mesh_protocol-0.2.1.dev0.dist-info/licenses/LICENSE,sha256=kKsbCnqWVbrrSHAf6NV4-fI3Sdgt9xycjiijGloDW8g,20757
|
|
90
|
+
buf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
buf/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
+
buf/validate/validate_pb2.py,sha256=HFAayUV64KiIENS-1rkSYHaECy9FH6JwdWrRpFN2fvc,158582
|
|
93
|
+
buf/validate/validate_pb2.pyi,sha256=Nki0jMViS5u5iVrHcGyl5ZfUK5YLxZE5McpCp7pXXEU,30537
|
|
94
|
+
buf/validate/validate_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
95
|
+
digitalkin_proto/__init__.py,sha256=NQ5KDlr_V3wkGSYwiQk6tI_4J37fQQeWaWJ84ccEUE8,141
|
|
96
|
+
digitalkin_proto/__version__.py,sha256=lLLapNmauoK00ta_E8fBvfxFS_UOQE2_GWcYKrTR1hU,230
|
|
97
|
+
agentic_mesh_protocol-0.2.1.dev0.dist-info/METADATA,sha256=e4gfr1yfsQryjOTyphUjsBPZtIPVdeWq5pvnsa0sEd4,4775
|
|
98
|
+
agentic_mesh_protocol-0.2.1.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
99
|
+
agentic_mesh_protocol-0.2.1.dev0.dist-info/top_level.txt,sha256=ZGf2a7lsqLhrYotU3Jkc_Tu_3OVkRJfULS5jCANnaDI,43
|
|
100
|
+
agentic_mesh_protocol-0.2.1.dev0.dist-info/RECORD,,
|