Getting Started as an Admin
Admins set up and manage the Stacksona Gate workspace for their team.
Stacksona Support
Last Update één dag geleden
Summary
Admins set up and manage the Stacksona Gate workspace for their team. They create agents, configure tools and rules, assign reviewers, and manage user access.
Who this article is for
Use this article if you are an Admin responsible for setting up Stacksona Gate for your team, or if you are a Reviewer who needs to understand how requests are routed and reviewed.
In this help center, Admin means the person managing your team’s Stacksona Gate workspace. Admins manage agents, tools, rules, and team access from the Admin area of the product. The in-app documentation describes the Admin area as the place where admins manage agents, tools, rules, and team access.
What Admins manageAdmins can:
- Register AI agents that send requests to Stacksona Gate.
- Create tools that represent actions agents may perform.
- Configure rules for when actions are allowed, rejected, or sent to review.
- Assign reviewers to agent workflows.
- Manage users and roles.
- Review audit and webhook activity available in the workspace.
- Help developers connect agent workflows to Stacksona Gate.
Step 1: Create an agentAgents are the AI systems or workflows that send activity and decision requests to Stacksona Gate.
To create an agent:
- Go to Admin → Agents.
- Create a new agent.
- Give the agent a clear name.
- Assign the agent to a reviewer.
- Save the generated API key.
Step 2: Configure how the agent receives decisionsEach agent needs a way to receive approval or rejection decisions.
In Admin → Agents, configure the agent’s decision transport:
- Polling: The agent checks Stacksona Gate at regular intervals for a decision.
- Webhook: Stacksona Gate sends the decision to your endpoint when a reviewer decides.
Step 3: Register toolsTools are the actions your AI agent may ask to perform.
Examples:
- issue_refund
- send_email
- delete_record
- update_customer_plan
- deploy_change
- Go to Admin → Tools.
- Create a tool.
- Use the exact tool name your agent will send.
- Choose a default action.
- Add rules if needed.
Step 4: Set the default action for each toolEach tool has a default action. The default action applies when no rule matches.
Available default actions are:
- Allow: Automatically approve the action.
- Review: Send the action to a human reviewer.
- Reject: Automatically deny the action.
Example setup:
ToolSuggested default actionissue_refundReviewsend_emailReviewlookup_customerAllowdelete_recordReject or Reviewchange_subscriptionReview
The Admin guide lists the available default actions as allow, review, and reject.
Step 5: Add review rulesRules let Stacksona Gate decide what happens based on request details.
For example, you can create rules such as:
- Allow refunds under $50.
- Review refunds from $50 to $500.
- Reject refunds over $500.
- Review requests where the reason contains fraud.
- Review emails sent to specific domains.
- amount
- currency
- customer_id
- reason
- risk_score
- Upper limit
- Lower limit
- Between
- Contains
- Regex
Step 6: Assign reviewersReviewers are the people who evaluate pending requests in the inbox.
A reviewer can:
- Open the inbox.
- Review pending requests.
- Read the subject, risk level, summary, payload, timeline, and conversation log.
- Approve requests.
- Reject requests.
- Save notes without making a final decision.
Step 7: Manage users and accessGo to Admin → Users to manage team members.
Common roles are:
- Reviewer: Can view and decide requests in the inbox.
- Auditor: Can view logs and decisions without making changes.
- Admin: Can manage settings, agents, tools, and users.
For example:
- Give support leads the Reviewer role.
- Give compliance users the Auditor role.
- Give workflow owners or operations leads the Admin role.
Step 8: Help developers connect the agentAfter agents and tools are configured, give your developer:
- The Stacksona Gate base URL.
- The agent API key.
- The exact tool names to use.
- The expected payload fields for rules.
- Whether the agent should use polling or webhooks.
- Any review policy requirements.
- Log task events.
- Request a decision before gated actions.
- Wait if the response is pending_review.
- Continue only if the action is allowed or approved.
- Stop if the action is rejected.
Recommended test:
- Create or select an agent.
- Create a tool.
- Set the tool default action to Review.
- Send a test decision request from the agent.
- Confirm the request appears in the inbox.
- Have a reviewer approve or reject it.
- Confirm the agent receives the decision by polling or webhook.
