Polyman Documentation - v2.2.2
    Preparing search index...

    Function remoteListProblemsAction

    • 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

      If credentials are not registered

      If Polygon API request fails

      // From CLI: polyman remote-list
      await remoteListProblemsAction();
      // Displays:
      // 1. [123456] My Problem (owner: username, access: OWNER)
      // 2. [789012] Another Problem (owner: other, access: READ)
      // From CLI: polyman remote-list --owner tourist
      await remoteListProblemsAction('tourist');
      // Displays only problems owned by 'tourist'