summer-engine 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +35 -0
  2. package/bin/summer.js +3 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Summer Engine CLI
2
+
3
+ CLI and MCP tools for [Summer Engine](https://summerengine.com) - the AI-native game engine.
4
+
5
+ > Coming soon. Visit [summerengine.com](https://summerengine.com) to get started.
6
+
7
+ ## Quick Start
8
+
9
+ ```bash
10
+ npx summer-engine install # Install Summer Engine
11
+ npx summer-engine login # Sign in with your account
12
+ npx summer-engine create fps # Create a new project from template
13
+ npx summer-engine run # Launch the engine
14
+ ```
15
+
16
+ ## MCP Integration
17
+
18
+ Use Summer Engine with Cursor, Claude Code, or any MCP-compatible AI tool:
19
+
20
+ ```json
21
+ {
22
+ "mcpServers": {
23
+ "summer-engine": {
24
+ "command": "npx",
25
+ "args": ["summer-engine", "mcp"]
26
+ }
27
+ }
28
+ }
29
+ ```
30
+
31
+ ## Learn More
32
+
33
+ - [Website](https://summerengine.com)
34
+ - [Documentation](https://summerengine.com/docs)
35
+ - [Community](https://summerengine.com/community)
package/bin/summer.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log("Summer Engine CLI is coming soon. Visit https://summerengine.com to get started.");
3
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "summer-engine",
3
+ "version": "0.0.1",
4
+ "description": "CLI and MCP tools for Summer Engine - the AI-native game engine",
5
+ "keywords": ["game-engine", "godot", "ai", "mcp", "gamedev", "3d", "summer-engine"],
6
+ "homepage": "https://summerengine.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/summerengine/cli"
10
+ },
11
+ "license": "MIT",
12
+ "author": "Summer Engine <founders@summerengine.com>",
13
+ "bin": {
14
+ "summer": "./bin/summer.js"
15
+ },
16
+ "files": ["bin/", "README.md"],
17
+ "engines": {
18
+ "node": ">=18"
19
+ }
20
+ }