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
11 changes: 11 additions & 0 deletions .claude/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "serve-sim",
"runtimeExecutable": "node",
"runtimeArgs": ["packages/serve-sim/dist/serve-sim.js", "--port", "3242"],
"port": 3242
}
]
}
4 changes: 2 additions & 2 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "Apache-2.0",
"scripts": {
"build": "bun run --filter '*' build",
"dev": "bun run --filter 'serve-sim' dev",
"dev": "bun run --filter '@expo/serve-sim' dev",
"knip": "knip",
"typecheck": "tsc --noEmit",
"lint": "oxlint"
Expand Down
4 changes: 1 addition & 3 deletions packages/serve-sim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,7 @@ Sources:
An [Agent Skill](https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview) ships in [`skills/serve-sim`](skills/serve-sim) — it teaches AI coding agents (Claude Code, Cursor, Codex CLI, Gemini CLI, and any host implementing the open Agent Skills standard) how to drive a simulator through the CLI: taps, gestures, hardware buttons, rotation, camera injection, and handing the stream off to the host's preview pane.

```sh
bunx add-skill EvanBacon/serve-sim
# in Claude Code:
/plugin marketplace add EvanBacon/serve-sim
bunx add-skill expo/serve-sim
```

See [`skills/serve-sim/README.md`](skills/serve-sim/README.md) for the full capability list.
Expand Down
8 changes: 4 additions & 4 deletions packages/serve-sim/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "serve-sim",
"name": "@expo/serve-sim",
"version": "0.1.34",
"type": "module",
"author": {
Expand All @@ -10,12 +10,12 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/EvanBacon/serve-sim.git",
"url": "git+https://github.com/expo/serve-sim.git",
"directory": "packages/serve-sim"
},
"homepage": "https://github.com/EvanBacon/serve-sim#readme",
"homepage": "https://github.com/expo/serve-sim#readme",
"bugs": {
"url": "https://github.com/EvanBacon/serve-sim/issues"
"url": "https://github.com/expo/serve-sim/issues"
},
"bin": {
"serve-sim": "dist/serve-sim.js"
Expand Down