Agent-side SDK + CLI for the Handshake Prompt Protocol
Project description
handshake-prompt-agent
Agent-side SDK + CLI for the Handshake Prompt Protocol (HPP). Zero external dependencies (Python stdlib only).
Install
pip install handshake-prompt-agent
CLI
# Extract credentials from a handshake prompt
handshake-prompt-agent parse-prompt --prompt "$(pbpaste)"
# Get current schema + values
handshake-prompt-agent get-context --sid <sid> --token <token> --base <url>
# Submit field values
handshake-prompt-agent action --sid <sid> --token <token> --base <url> \
--data '{"name":"Alice","age":30}'
# Get incremental changes since last submit
handshake-prompt-agent get-diff --sid <sid> --token <token> --base <url> \
--since "2026-06-23T10:22:00+08:00"
Programmatic API
from handshake_prompt_agent import HandshakeAgent, parse_prompt
# Parse user-pasted prompt
creds = parse_prompt(prompt_text)
agent = HandshakeAgent(
sid=creds['sessionId'],
token=creds['token'],
base_url=creds['baseUrl'],
)
# Read current state (call this BEFORE every action!)
state = agent.get_context()
print(state['schema']) # field definitions
print(state['context']) # current values + who filled (user/ai/empty/user_edit)
print(state['missing']) # required-but-empty keys
# Apply values
result = agent.action({
'name': 'Alice',
'email': 'alice@example.com',
'age': 30,
})
print(result['applied']) # fields successfully written
print(result['rejected']) # fields blocked (e.g. user already filled)
print(result['context']) # full state snapshot after the action
Skill integration
This package is intended to be used inside an Agent skill (e.g. Codemaker, Claude, Cursor). A typical skill file:
# my-handshake-skill SKILL.md
Triggered when user pastes a message containing `sessionId:` and `token:`.
Workflow:
1. parse-prompt to extract credentials
2. get-context to read current schema + values
3. reason out field values based on user's request
4. action to submit values
Always call get-context BEFORE each action to see latest state
(user may have edited fields manually).
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file handshake_prompt_agent-0.1.2.tar.gz.
File metadata
- Download URL: handshake_prompt_agent-0.1.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa2815ff9e74ae9ad8d43dde2f5b9367c0a40ef7dd6207f64b34aab3691060f5
|
|
| MD5 |
a6d9120a5b86cdc4afa5e060941a7dc8
|
|
| BLAKE2b-256 |
a0f7993c080ccfc28ec5173a7c2414f77ea425fd77321f4c0453ac93b101edf6
|
File details
Details for the file handshake_prompt_agent-0.1.2-py3-none-any.whl.
File metadata
- Download URL: handshake_prompt_agent-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
769beb3710efd43e7129e76cf727ecbbe82382e97d0d67107a23ac446f3f21bd
|
|
| MD5 |
549eab1973d4f3279196394f34dbb7d8
|
|
| BLAKE2b-256 |
9f0c8062f1296ee8205b8d0ec4d2f2395eb9aca6114ce4a5e250d450ae687821
|