modscape 0.2.0 → 0.4.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "modscape",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "description": "Modscape: A YAML-driven data modeling visualizer CLI",
5
5
  "repository": {
6
6
  "type": "git",
package/src/index.js CHANGED
@@ -15,7 +15,7 @@ const program = new Command();
15
15
  program
16
16
  .name('modscape')
17
17
  .description('A YAML-driven data modeling visualizer CLI')
18
- .version('0.2.0');
18
+ .version('0.4.0');
19
19
 
20
20
  program
21
21
  .command('init')
package/src/init.js CHANGED
@@ -29,7 +29,7 @@ async function safeWriteFile(filePath, content) {
29
29
  }
30
30
 
31
31
  export async function initProject(options = {}) {
32
- console.log('\n 🛠️ ModMod Project Initialization\n');
32
+ console.log('\n 🛠️ ModScape Project Initialization\n');
33
33
 
34
34
  try {
35
35
  const agents = [];
@@ -72,15 +72,15 @@ export async function initProject(options = {}) {
72
72
  // 2. Create agent-specific files
73
73
  if (agents.includes('gemini')) {
74
74
  const skillTemplate = fs.readFileSync(path.join(__dirname, 'templates/gemini/SKILL.md'), 'utf8');
75
- await safeWriteFile('.gemini/skills/modmod/SKILL.md', skillTemplate);
75
+ await safeWriteFile('.gemini/skills/modscape/SKILL.md', skillTemplate);
76
76
 
77
77
  const commandTemplate = fs.readFileSync(path.join(__dirname, 'templates/gemini/command.toml'), 'utf8');
78
- await safeWriteFile('.gemini/commands/modmod/modeling.toml', commandTemplate);
78
+ await safeWriteFile('.gemini/commands/modscape/modeling.toml', commandTemplate);
79
79
  }
80
80
 
81
81
  if (agents.includes('codex')) {
82
82
  const promptTemplate = fs.readFileSync(path.join(__dirname, 'templates/codex/prompt.md'), 'utf8');
83
- await safeWriteFile('.codex/prompts/modmod-modeling.md', promptTemplate);
83
+ await safeWriteFile('.codex/prompts/modscape-modeling.md', promptTemplate);
84
84
  }
85
85
 
86
86
  if (agents.includes('claude')) {
@@ -88,7 +88,7 @@ export async function initProject(options = {}) {
88
88
  await safeWriteFile('.clauderules', clauderules);
89
89
 
90
90
  const commandTemplate = fs.readFileSync(path.join(__dirname, 'templates/claude/command.md'), 'utf8');
91
- await safeWriteFile('.claude/commands/modmod/modeling.md', commandTemplate);
91
+ await safeWriteFile('.claude/commands/modscape/modeling.md', commandTemplate);
92
92
  }
93
93
 
94
94
  console.log('\n ✅ Initialization complete! Customize ".modscape/rules.md" to match your project standards.\n');
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "visualizer",
3
3
  "private": true,
4
- "version": "0.2.0",
4
+ "version": "0.4.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",