@milenyumai/film-kit 1.0.0 ā 1.0.2
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.
- package/build/cli.js +34 -0
- package/package.json +5 -1
package/build/cli.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { configureAgents } from "./lib/configure.js";
|
|
3
|
+
const args = process.argv.slice(2);
|
|
4
|
+
const command = args[0];
|
|
5
|
+
if (command === "init") {
|
|
6
|
+
console.log("š¬ Film-Kit: Configuring AI agents...\n");
|
|
7
|
+
try {
|
|
8
|
+
const result = await configureAgents({ rootDir: process.cwd() });
|
|
9
|
+
if (result.written.length > 0) {
|
|
10
|
+
console.log(`ā
Files written: ${result.written.length}`);
|
|
11
|
+
result.written.forEach(f => console.log(` ${f}`));
|
|
12
|
+
}
|
|
13
|
+
if (result.skipped.length > 0) {
|
|
14
|
+
console.log(`āļø Files skipped (already exist): ${result.skipped.length}`);
|
|
15
|
+
}
|
|
16
|
+
console.log("\nš¬ Done! Your AI agents are configured for Hollywood-grade prompt engineering.");
|
|
17
|
+
console.log(" Use /generate in your AI editor to start creating shots.\n");
|
|
18
|
+
}
|
|
19
|
+
catch (err) {
|
|
20
|
+
console.error("ā Error:", err.message);
|
|
21
|
+
process.exit(1);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
console.log(`
|
|
26
|
+
š¬ @milenyumai/film-kit ā Hollywood-grade prompt engineering for Veo 3.1
|
|
27
|
+
|
|
28
|
+
Usage:
|
|
29
|
+
npx @milenyumai/film-kit init Configure AI agents in current directory
|
|
30
|
+
|
|
31
|
+
Or install as a dependency (auto-configures on install):
|
|
32
|
+
npm install --save-dev @milenyumai/film-kit
|
|
33
|
+
`);
|
|
34
|
+
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milenyumai/film-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Hollywood-standard cinematic prompt engineering toolkit for Google Flow + Veo 3.1. Auto-configures AI agents (Cursor, Claude Code, VS Code Copilot, Antigravity) with production-grade shot generation system.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/index.js",
|
|
7
7
|
"types": "./build/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"film-kit": "./build/cli.js"
|
|
10
|
+
},
|
|
8
11
|
"exports": {
|
|
9
12
|
".": {
|
|
10
13
|
"types": "./build/index.d.ts",
|
|
@@ -15,6 +18,7 @@
|
|
|
15
18
|
}
|
|
16
19
|
},
|
|
17
20
|
"files": [
|
|
21
|
+
"build/cli.js",
|
|
18
22
|
"build/index.js",
|
|
19
23
|
"build/index.d.ts",
|
|
20
24
|
"build/postinstall.js",
|