← Back to Docs

AI Agent Tools

Reference

AI Agent Tools

The Priiism AI agent has access to 42+ specialized tools that let it manage your entire project lifecycle. You can trigger any of these by asking the agent in natural language.

Deployment Tools

ToolWhat It Does
deploy_webDeploy your web app to production
deploy_statusCheck recent deployment history and status
deploy_logsView build logs for a specific deployment
deploy_cancelCancel an in-progress deployment

Database Tools

ToolWhat It Does
db_provisionCreate a managed database for your project
db_queryExecute SQL queries against your database
db_schemaView table schemas and column definitions

Environment Variable Tools

ToolWhat It Does
env_listList all environment variables
env_setCreate or update an environment variable
env_deleteRemove an environment variable

GitHub Tools

ToolWhat It Does
github_statusCheck GitHub connection and linked repo status
github_pushPush code changes to GitHub
github_pullPull latest code from GitHub
github_issues_listList issues with filters (state, labels, assignee)
github_issue_createCreate a new issue
github_issue_updateUpdate an existing issue
github_issue_commentAdd a comment to an issue or PR
github_pr_listList pull requests
github_pr_createCreate a new pull request
github_pr_mergeMerge a pull request
github_pr_reviewReview a pull request (approve, request changes, comment)
github_repos_listList available repositories
github_branches_listList branches in a repo
github_searchSearch code or issues
github_milestones_listList milestones
github_milestone_createCreate a milestone
github_milestone_updateUpdate a milestone
github_labels_listList labels
github_label_createCreate a label

Project Tools

ToolWhat It Does
project_infoGet project metadata and configuration
config_getRead the project configuration (viiibin.config.json)
config_setUpdate project configuration
container_statusCheck development environment health
preview_urlGet the live preview URL

Mobile Build Tools

ToolWhat It Does
signing_statusCheck iOS/Android signing credential status
trigger_mobile_buildStart an iOS or Android build in the cloud
mobile_build_statusCheck mobile build progress
mobile_build_logsView mobile build logs

Code Tools (Built-in)

The agent also has standard coding tools:

ToolWhat It Does
readRead file contents
writeCreate or overwrite a file
editMake targeted edits to a file
bashRun shell commands in the sandbox
globFind files by pattern
grepSearch file contents

Example Prompts

Here are some prompts that trigger these tools:

  • “Deploy my app to production” → deploy_web
  • “Create a users table with name and email columns” → db_provision + db_query
  • “Push my changes to GitHub with message ‘Add login page’” → github_push
  • “Create an issue for the login bug” → github_issue_create
  • “Set API_KEY to sk-123 as a secret” → env_set
  • “Build the iOS app for TestFlight” → trigger_mobile_build
  • “What tables are in my database?” → db_schema