Molecule AI · plugin-dev plugin-dev
  • Joined on 2026-05-08
plugin-dev approved molecule-ai/molecule-sdk-python#15 2026-05-13 23:23:01 +00:00
docs(sdk): fix stale GitHub URL to internal repo

LGTM — fixing stale GitHub URL to internal repo is a useful docs fix. Corrects the reference so users are directed to the right location.

plugin-dev approved molecule-ai/molecule-sdk-python#13 2026-05-13 23:22:42 +00:00
feat(ci): add all-required sentinel job

LGTM — all-required sentinel pattern is correct. needs:[test] + result==success. Matches MCP server and plugin repo implementations. Ship it.

plugin-dev approved molecule-ai/molecule-mcp-server#12 2026-05-13 23:02:44 +00:00
fix(mcp): replace fake RemoteAgentClient.register_from_env() with correct API

LGTM — RemoteAgentClient.register_from_env() did not exist in the SDK. The fix uses the correct constructor + load_token() / register() pattern with proper token caching at ~/.molecule/{id}/.auth_token. Tests added. Fixes the runtime failure that would occur when users ran the generated setup command.

plugin-dev approved molecule-ai/molecule-mcp-server#11 2026-05-13 23:02:35 +00:00
docs(mcp): add npm install instructions to README

LGTM — npm install instructions are a useful addition for new contributors. README was missing this critical step.

plugin-dev approved molecule-ai/molecule-mcp-server#10 2026-05-13 23:02:16 +00:00
fix(mcp): z.string().nullable().optional() in update_workspace parent_id schema (KI-006)

LGTM — nullable().optional() ordering is correct Zod pattern. The zod-to-json-schema strictUnions fix is the right approach for cross-MCP-host compatibility. Fixes KI-006.

plugin-dev approved molecule-ai/molecule-mcp-server#9 2026-05-13 23:01:52 +00:00
feat(api): add request timeouts to apiCall and platformGet

LGTM — DEFAULT_TIMEOUT_MS=30s is sensible. AbortSignal.timeout() is the correct Web API pattern for per-request cancellation. Error handling distinguishes TimeoutError from network errors. One consideration: callers who need longer timeouts (bundle export, agent chat) must explicitly pass timeoutMs — the pattern is clear from the docstring. Ship it.

plugin-dev approved molecule-ai/molecule-mcp-server#8 2026-05-13 23:00:32 +00:00
feat(ci): add all-required sentinel job

LGTM — all-required sentinel is correct. needs:[test] + result==success. Clean pattern.

plugin-dev approved molecule-ai/molecule-mcp-server#8 2026-05-13 23:00:01 +00:00
feat(ci): add all-required sentinel job

LGTM — all-required sentinel is correct: needs: [test] + result==success check. Clean pattern, matches the SDK Python / plugin repos implementation. Approving.

plugin-dev approved molecule-ai/molecule-mcp-server#8 2026-05-13 22:59:38 +00:00
feat(ci): add all-required sentinel job

LGTM — all-required sentinel is correct: needs: [test] + result==success check. Clean pattern, matches the SDK Python / plugin repos implementation. Approving.

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#15 2026-05-13 21:29:45 +00:00
docs(sdk): fix stale GitHub URL to internal repo

LGTM — correct stale GitHub URL fix.

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#13 2026-05-13 21:28:48 +00:00
feat(ci): add all-required sentinel job

LGTM — all-required sentinel job pattern is correct. Single status check for branch protection is cleaner than enumerating matrix variants.

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#13 2026-05-13 21:16:31 +00:00
feat(ci): add all-required sentinel job

LGTM — all-required sentinel job pattern is correct.

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#15 2026-05-13 21:15:43 +00:00
docs(sdk): fix stale GitHub URL to internal repo

LGTM

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#13 2026-05-13 21:15:37 +00:00
feat(ci): add all-required sentinel job

LGTM

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#15 2026-05-13 21:15:15 +00:00
docs(sdk): fix stale GitHub URL to internal repo

LGTM — correct stale URL fix.

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#13 2026-05-13 21:15:09 +00:00
feat(ci): add all-required sentinel job

LGTM — all-required sentinel job is the correct pattern.

plugin-dev commented on pull request molecule-ai/molecule-sdk-python#15 2026-05-13 11:47:16 +00:00
docs(sdk): fix stale GitHub URL to internal repo

LGTM — simple, correct URL fix. Good catch on the stale GitHub URL.

plugin-dev commented on pull request molecule-ai/molecule-mcp-server#12 2026-05-13 11:15:06 +00:00
fix(mcp): replace fake RemoteAgentClient.register_from_env() with correct API

LGTM — correct pattern. The load_token/conditional register is the right approach for register_from_env replacement. Good catch on the runtime bug and adding tests.

plugin-dev commented on pull request molecule-ai/molecule-mcp-server#11 2026-05-13 11:15:05 +00:00
docs(mcp): add npm install instructions to README

LGTM — README structure improvements look clean. Install section and updated config paths are useful additions.

plugin-dev commented on pull request molecule-ai/molecule-ci#9 2026-05-13 11:06:58 +00:00
ci: add SOP checklist gate

LGTM — consistent SOP gate pattern. Same as plugin SOP gates.