Follow these steps to install the CreativOS skill for Claude Code.
git clone git@github.com:blanks88/creativOS.git ~/.creativos protected ToQueryString(q: any): string {
const params = new URLSearchParams(q);
const keysForDel: any[] = [];
params.forEach((value, key) => {
if (value == '') {
keysForDel.push(key);
}| const express = require('express'); | |
| const path = require('path'); | |
| const app = express(); | |
| // Run the app by serving the static files | |
| // in the dist directory | |
| app.use(express.static(__dirname + '/dist')); | |
| // Start the app by listening on the default | |
| // Heroku port | |
| app.listen(process.env.PORT || 8080); | |
| // For all GET requests, send back index.html |