Some checks failed
Main Confidence / confidence (push) Failing after 1m45s
## Summary - add the bounded workspace commercial lifecycle overlay from spec 251 on top of the existing entitlement substrate - expose audited commercial state inspection and mutation on the system workspace detail surface - gate onboarding activation and review-pack start actions through the shared lifecycle decision while preserving suspended read-only access to existing review, evidence, and generated-pack history - add focused Pest coverage plus the spec/plan/tasks/data-model/contract artifacts for the feature ## Validation - targeted Pest unit and feature lanes for lifecycle resolution, system-plane mutation, onboarding gating, review-pack enforcement, download preservation, customer review workspace access, and evidence snapshot access - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - integrated browser smoke on the system workspace detail and the preserved read-only review/evidence/review-pack surfaces ## Notes - branch: `251-commercial-entitlements-billing-state` - base: `dev` - commit: `606e9760` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #292
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
import json
|
|
import subprocess
|
|
import sys
|
|
import time
|
|
|
|
def send(proc, payload):
|
|
proc.stdin.write((json.dumps(payload) + "\n").encode("utf-8"))
|
|
proc.stdin.flush()
|
|
|
|
def read_line(proc, timeout=10.0):
|
|
start = time.time()
|
|
while time.time() - start < timeout:
|
|
line = proc.stdout.readline()
|
|
if line:
|
|
return line.decode("utf-8", errors="replace").strip()
|
|
time.sleep(0.05)
|
|
return ""
|
|
|
|
def main():
|
|
proc = subprocess.Popen(
|
|
["python3", "scripts/run-gitea-mcp.py"],
|
|
stdin=subprocess.PIPE,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE,
|
|
)
|
|
try:
|
|
send(proc, {
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"method": "initialize",
|
|
"params": {
|
|
"protocolVersion": "2024-11-05",
|
|
"capabilities": {},
|
|
"clientInfo": {"name": "test", "version": "1.0.0"},
|
|
},
|
|
})
|
|
init_resp = read_line(proc)
|
|
send(proc, {
|
|
"jsonrpc": "2.0",
|
|
"id": 2,
|
|
"method": "tools/list",
|
|
"params": {}
|
|
})
|
|
tools_resp = read_line(proc)
|
|
print(tools_resp)
|
|
finally:
|
|
proc.terminate()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|