proto-socket/agent-ops/skills/project/add-proto-socket-crosstest-language/templates
toki d0754a353a refactor: rename toki_socket to proto_socket across all languages
- Rename package/module from toki_socket to proto_socket in Dart, Kotlin, Python
- Update crosstest implementations to use renamed packages
- Add new proto_socket skill, deprecate add-toki-socket-crosstest-language skill
- Update domain rules for all languages
- Update documentation (README, PORTING_GUIDE, PROTOCOL, VERSIONING)
2026-05-02 07:19:12 +09:00
..
CROSSTEST_CHECKLIST.md refactor: rename toki_socket to proto_socket across all languages 2026-05-02 07:19:12 +09:00
IMPLEMENTATION_CHECKLIST.md refactor: rename toki_socket to proto_socket across all languages 2026-05-02 07:19:12 +09:00
README.md refactor: rename toki_socket to proto_socket across all languages 2026-05-02 07:19:12 +09:00

Proto Socket

Status: planned

This package implements Proto Socket protocol version 0.1 for .

Required Structure

Use this package README to document the concrete files for:

  • Transport abstraction: TCP, TLS+TCP, WS, and WSS implementations.
  • Communicator core: parser map, listener routing, request-response correlation, and serialized writes.
  • Client/server layer: connection lifecycle, close behavior, and heartbeat ownership.
  • Generated protobuf bindings from proto/message_common.proto.
  • Unit tests and cross-language tests.

Proto Generation

Document the package-local proto generation command here. The generated schema must match proto/message_common.proto except for language-specific generator options.

# <command to generate protobuf bindings>

After generation, run from the repository root:

tools/check_proto_sync.sh

Validation

Before marking this implementation available, document and run:

# <formatter or linter>
# <unit tests>
# <crosstest command>

The implementation must pass same-language tests and cross-language tests against at least one available implementation.