File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " specx-codex-plugin" ,
3- "version" : " 0.2.0 " ,
3+ "version" : " 0.2.1 " ,
44 "description" : " Universal spec-driven agent governance and execution contract runtime for Codex." ,
55 "license" : " MIT" ,
66 "author" : {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ codex plugin marketplace add BTCNAI/specx-codex-marketplace
1717Or pin the stable release:
1818
1919``` bash
20- codex plugin marketplace add https://github.com/BTCNAI/specx-codex-marketplace.git --ref v0.2.0
20+ codex plugin marketplace add https://github.com/BTCNAI/specx-codex-marketplace.git --ref v0.2.1
2121```
2222
2323## What It Provides
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ codex plugin marketplace add BTCNAI/specx-codex-marketplace
1111Pinned install:
1212
1313``` bash
14- codex plugin marketplace add https://github.com/BTCNAI/specx-codex-marketplace.git --ref v0.2.0
14+ codex plugin marketplace add https://github.com/BTCNAI/specx-codex-marketplace.git --ref v0.2.1
1515```
1616
1717## Validate A Contract
Original file line number Diff line number Diff line change 11import asyncio
22import json
3+ import sys
34import unittest
45from pathlib import Path
56
6- from scripts .specx_mcp import build_server
7-
87
98ROOT = Path (__file__ ).resolve ().parents [1 ]
9+ if str (ROOT ) not in sys .path :
10+ sys .path .insert (0 , str (ROOT ))
11+
12+ from scripts .specx_mcp import build_server
13+
1014VALID = ROOT / "examples" / "generic_research_contract.json"
1115
1216
You can’t perform that action at this time.
0 commit comments