Lists all problems accessible to the authenticated user on Polygon.
Displays problem ID, name, owner, and access level.
Requires registered API credentials.
Parameters
Optionalowner: string
Optional owner username to filter problems
Returns Promise<void>
Resolves when listing completes
Throws
If credentials are not registered
Throws
If Polygon API request fails
Example
// From CLI: polyman remote-list awaitremoteListProblemsAction(); // Displays: // 1. [123456] My Problem (owner: username, access: OWNER) // 2. [789012] Another Problem (owner: other, access: READ)
Example
// From CLI: polyman remote-list --owner tourist awaitremoteListProblemsAction('tourist'); // Displays only problems owned by 'tourist'
Lists all problems accessible to the authenticated user on Polygon. Displays problem ID, name, owner, and access level. Requires registered API credentials.