algomath-extract 1.0.0 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "algomath-extract",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AlgoMath Framework - Transform AI assistants into reliable mathematical problem-solving environments",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * AlgoMath Post-Install Hook
5
+ *
6
+ * Runs automatically after npm install
7
+ */
8
+
9
+ console.log('\n╔════════════════════════════════════════════════════╗');
10
+ console.log('║ AlgoMath Post-Install ║');
11
+ console.log('╚════════════════════════════════════════════════════╝\n');
12
+
13
+ console.log('AlgoMath has been installed successfully!\n');
14
+ console.log('To install the opencode commands, run:');
15
+ console.log(' npx algomath-extract --opencode\n');
16
+ console.log('Or manually:');
17
+ console.log(' node node_modules/algomath-extract/bin/install.js --opencode\n');
18
+
19
+ console.log('Then try:');
20
+ console.log(' /algo-help\n');