Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ runline exec 'return await github.user.listRepos({ username: "torvalds" })'
| <img src="https://raw.githubusercontent.com/Michaelliv/runline/main/packages/runline-plugins/icons/freshservice.svg" width="16" height="16" style="vertical-align: middle"> **freshservice** | 77 | agent, agentGroup, announcement, asset, assetType, change, department, location, problem, product, release, requester, requesterGroup, software, ticket, agentRole | `FRESHSERVICE_DOMAIN`, `FRESHSERVICE_API_KEY` |
| <img src="https://raw.githubusercontent.com/Michaelliv/runline/main/packages/runline-plugins/icons/freshworksCrm.svg" width="16" height="16" style="vertical-align: middle"> **freshworksCrm** | 35 | account, appointment, contact, deal, note, salesActivity, task, search | `FRESHWORKS_CRM_DOMAIN`, `FRESHWORKS_CRM_API_KEY` |
| <img src="https://raw.githubusercontent.com/Michaelliv/runline/main/packages/runline-plugins/icons/getresponse.png" width="16" height="16" style="vertical-align: middle"> **getresponse** | 5 | contact | `GETRESPONSE_API_KEY` |
| <img src="https://raw.githubusercontent.com/Michaelliv/runline/main/packages/runline-plugins/icons/gett.svg" width="16" height="16" style="vertical-align: middle"> **gett** | 9 | connect, refresh, whoami, find_place, price, nearby_drivers, ride_status, book_ride, cancel_ride | |
| <img src="https://raw.githubusercontent.com/Michaelliv/runline/main/packages/runline-plugins/icons/ghost.svg" width="16" height="16" style="vertical-align: middle"> **ghost** | 5 | post | `GHOST_URL`, `GHOST_ADMIN_API_KEY` |
| <img src="https://raw.githubusercontent.com/Michaelliv/runline/main/packages/runline-plugins/icons/github.svg" width="16" height="16" style="vertical-align: middle"> **github** | 37 | file, issue, release, commit, branch, repository, review, user, organization, workflow | `GITHUB_TOKEN` |
| <img src="https://raw.githubusercontent.com/Michaelliv/runline/main/packages/runline-plugins/icons/gitlab.svg" width="16" height="16" style="vertical-align: middle"> **gitlab** | 17 | issue, release, repository, user, file | `GITLAB_TOKEN` |
Expand Down
1 change: 1 addition & 0 deletions packages/runline-plugins/ACCESS_CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Status values: `pending`, `in-progress`, `done`.
| `freshservice` | done | Annotated 77 runtime actions via CRUD helper and direct registrations: 32 read (resource get/list plus agentRole get/list) and 45 write (resource create/update/delete). |
| `freshworksCrm` | done | Annotated 35 runtime actions via CRUD helper and direct registrations: 14 read (resource get/list where enabled plus `search.query`, `search.lookup`) and 21 write (resource create/update/delete). |
| `getresponse` | done | Annotated 5 actions: 2 read (`contact.get`, `contact.list`) and 3 write (`contact.create`, `contact.update`, `contact.delete`). |
| `gett` | done | Annotated 9 actions: 5 read (`whoami`, `find_place`, `price`, `nearby_drivers`, `ride_status`) and 4 write (`connect` owner login/token rotation, `refresh` keepalive token rotation, `book_ride`, `cancel_ride`). `book_ride`/`cancel_ride` spend money and are gated behind `allowOrdering` + `confirm:true`. |
| `ghost` | done | Annotated 5 actions: 2 read (`post.get`, `post.list`) and 3 write (`post.create`, `post.update`, `post.delete`). |
| `github` | done | Annotated 37 actions: 22 read (file/issue/release/commit/branch/repository/review/user/org/workflow get/list/usage actions) and 15 write (file create/update/delete, issue create/update/comment/lock, release create/update/delete, review create/update, user invite, workflow dispatch/enable/disable). |
| `gitlab` | done | Annotated 17 actions: 8 read (`issue.get`, release get/list, repository get/listIssues, `user.listProjects`, file get/list) and 9 write (issue create/update/note/lock, release create/update/delete, file createOrUpdate/delete). |
Expand Down
Loading