Agent Skills
› vercel-labs/open-agents
› remove-demo-limits
remove-demo-limits
GitHub移除托管演示版的试用限制,使 Fork 具备自托管部署能力。通过删除会话、消息及认证相关的守卫代码和测试,实现无限制的正常使用。
Trigger Scenarios
remove demo limits
remove trial limits
remove hosted restrictions
open this up for my fork
remove managed template restrictions
Install
npx skills add vercel-labs/open-agents --skill remove-demo-limits -g -y
SKILL.md
Frontmatter
{
"name": "remove-demo-limits",
"description": "Removes Open Harness hosted demo restrictions from a fork. Use when a maintainer wants to remove managed-template trial caps, hosted deployment gating, or \"deploy your own\" limits. Triggers on \"remove demo limits\", \"remove trial limits\", \"remove hosted restrictions\", \"open this up for my fork\", \"remove managed template restrictions\"."
}
Remove the managed-template trial restrictions with the smallest coherent change.
Goal
Make the fork behave like a normal self-hosted deployment:
- no trial session cap
- no trial message cap
- no hosted-only restriction errors
- no hosted-demo delete restrictions
- no dead helper code or stale tests
Inspect first
Read these files before editing:
apps/web/lib/managed-template-trial.tsapps/web/app/api/sessions/route.tsapps/web/app/api/chat/route.tsapps/web/app/api/sessions/[sessionId]/chats/[chatId]/messages/[messageId]/route.tsapps/web/app/api/sessions/route.test.tsapps/web/app/api/chat/route.test.tsapps/web/app/api/sessions/[sessionId]/chats/[chatId]/messages/[messageId]/route.test.ts
Then search for these identifiers and strings to catch older or newer variants:
isManagedTemplateTrialUserMANAGED_TEMPLATE_TRIAL_deploy-your-ownopen-agents.devvercel.comThis hosted deployment includesdoes not allow message deletion
Required changes
- Remove the guards that block session creation, chat messages, or message deletion for managed-template users.
- If the auth callback still blocks non-Vercel emails on hosted deployments, remove that restriction too.
- Delete
apps/web/lib/managed-template-trial.tsif it becomes unused; otherwise simplify it so no dead exports remain. - Remove or update tests that assert the hosted caps, delete restrictions, or hosted-only auth gating.
- Do not add feature flags, env toggles, or new dependencies. Prefer deleting the restriction code outright.
- Keep unrelated auth, session ownership, and sandbox behavior unchanged.
Verification
This repo uses Bun. After the edits:
- run
bun run ci - if a failure is pre-existing, say that clearly and separate it from your changes
Output
Report:
- which restrictions were removed
- which files changed
- verification result
Version History
- cf865e9 Current 2026-07-24 22:32


