Skip to content

Commit b8c3e11

Browse files
committed
fixes, linting, autogen readme docs
1 parent d52f74a commit b8c3e11

File tree

3 files changed

+277
-290
lines changed

3 files changed

+277
-290
lines changed

README.md

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -533,32 +533,32 @@ The following sets of tools are available (all are on by default):
533533
- `title`: Issue title (string, required)
534534
- `type`: Type of this issue (string, optional)
535535

536-
- **get_issue** - Get issue details
537-
- `issue_number`: The number of the issue (number, required)
538-
- `owner`: The owner of the repository (string, required)
539-
- `repo`: The name of the repository (string, required)
540-
541536
- **get_issue_comments** - Get issue comments
542537
- `issue_number`: Issue number (number, required)
543538
- `owner`: Repository owner (string, required)
544539
- `page`: Page number for pagination (min 1) (number, optional)
545540
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
546541
- `repo`: Repository name (string, required)
547542

543+
- **issues_read** - List available issue types
544+
- `direction`: Order direction. If provided, the 'orderBy' also needs to be provided. OPTIONAL for LIST operation. Ignore for SEARCH operation and GET operation. (string, optional)
545+
- `issue_number`: The number of the issue. REQUIRED for GET operation. (number, optional)
546+
- `labels`: Filter by labels. OPTIONAL for LIST operation. Ignore for SEARCH operation and GET operation. (string[], optional)
547+
- `operation`: The operation to perform. This argument is REQUIRED for all operations. Choose between: GET, LIST, SEARCH. (string, required)
548+
- `order`: Sort order. OPTIONAL for SEARCH operation. Ignore for LIST operation and GET operation. (string, optional)
549+
- `orderBy`: Order issues by field. If provided, the 'direction' also needs to be provided. OPTIONAL for LIST operation. IGNORE for SEARCH operation and GET operation. (string, optional)
550+
- `owner`: The owner of the repository. OPTIONAL for SEARCH operation. REQUIRED for LIST and GET operations. (string, required)
551+
- `page`: Page number for pagination (min 1) (number, optional)
552+
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
553+
- `query`: Search query using GitHub issues search syntax. REQUIRED for SEARCH operation. Ignore for LIST operation and GET operation. (string, optional)
554+
- `repo`: The name of the repository. OPTIONAL for SEARCH operation. REQUIRED for LIST and GET operations. (string, optional)
555+
- `since`: Filter by date (ISO 8601 timestamp). OPTIONAL for LIST operation Ignore for SEARCH operation and GET operation. (string, optional)
556+
- `sort`: Sort field by number of matches of categories, defaults to best match. OPTIONAL for SEARCH operation. Ignore for LIST operation and GET operation. (string, optional)
557+
- `state`: Filter by state, by default both open and closed issues are returned when not provided. OPTIONAL for LIST operation. Ignore for SEARCH operation and GET operation. (string, optional)
558+
548559
- **list_issue_types** - List available issue types
549560
- `owner`: The organization owner of the repository (string, required)
550561

551-
- **list_issues** - List issues
552-
- `after`: Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs. (string, optional)
553-
- `direction`: Order direction. If provided, the 'orderBy' also needs to be provided. (string, optional)
554-
- `labels`: Filter by labels (string[], optional)
555-
- `orderBy`: Order issues by field. If provided, the 'direction' also needs to be provided. (string, optional)
556-
- `owner`: Repository owner (string, required)
557-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
558-
- `repo`: Repository name (string, required)
559-
- `since`: Filter by date (ISO 8601 timestamp) (string, optional)
560-
- `state`: Filter by state, by default both open and closed issues are returned when not provided (string, optional)
561-
562562
- **list_sub_issues** - List sub-issues
563563
- `issue_number`: Issue number (number, required)
564564
- `owner`: Repository owner (string, required)
@@ -580,15 +580,6 @@ The following sets of tools are available (all are on by default):
580580
- `repo`: Repository name (string, required)
581581
- `sub_issue_id`: The ID of the sub-issue to reprioritize. ID is not the same as issue number (number, required)
582582

583-
- **search_issues** - Search issues
584-
- `order`: Sort order (string, optional)
585-
- `owner`: Optional repository owner. If provided with repo, only issues for this repository are listed. (string, optional)
586-
- `page`: Page number for pagination (min 1) (number, optional)
587-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
588-
- `query`: Search query using GitHub issues search syntax (string, required)
589-
- `repo`: Optional repository name. If provided with owner, only issues for this repository are listed. (string, optional)
590-
- `sort`: Sort field by number of matches of categories, defaults to best match (string, optional)
591-
592583
- **update_issue** - Edit issue
593584
- `assignees`: New assignees (string[], optional)
594585
- `body`: New description (string, optional)

0 commit comments

Comments
 (0)