marketing-machine
Claim-provenance and brand-compliance harness for marketing content: scans your codebase for product truth, lints copy against it, renders on-brand cards and video. Installs as a Claude Code plugin/skill, Cursor rule, or AGENTS.md section.
File Explorer
- marketplace.json
- plugin.json
- test.yml
- browser.mjs
- claims.mjs
- config.mjs
- contrast.mjs
- detect.mjs
- drive.mjs
- fonts.mjs
- html.mjs
- post.mjs
- update.mjs
- core.json
- lang.de.json
- lang.en.json
- lang.es.json
- lang.fr.json
- lang.tr.json
- carousel.mjs
- cli.mjs
- doctor.mjs
- init.mjs
- lint.mjs
- record.mjs
- render-card.mjs
- report.mjs
- scan.mjs
- video-guide.md
- SKILL.md
- card.html
- marketing-lint.yml
- scene.html
- carousel.test.mjs
- claims.test.mjs
- config.test.mjs
- contrast.test.mjs
- detect.test.mjs
- drive.test.mjs
- field-report.test.mjs
- helpers.mjs
- html.test.mjs
- init.test.mjs
- lint.test.mjs
- render-card.test.mjs
- report.test.mjs
- rules.test.mjs
- scan.test.mjs
- update.test.mjs
- .gitignore
- CLAUDE.md
- CONTRIBUTING.md
- LICENSE
- marketing.config.example.json
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
write
View Details ▼
write
Write data to memory.
write memory
Write current configuration to memory:
write {{username}} {{terminal_id}}
Send a message to a given user on a given terminal ID:
write {{username}} {{terminal_id}}
Send a message to a given user on a given terminal ID:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git pull
View Details ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
most
View Details ▼
most
Open one or several files for interactive reading, allowing scrolling and search.
most {{path/to/file}}
Open a file:
most {{path/to/file1 path/to/file2 ...}}
Open several files:
most {{path/to/file}} +/{{string}}
Open a file at the first occurrence of "string":
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm link
View Details ▼
npm link
Symlink a local package into the global `node_modules` or another project for development.
npm {{[ln|link]}}
Symlink the current package globally:
npm {{[ln|link]}} {{package_name}}
Link a globally linked package into another project's `node_modules`:
npm {{[r|unlink]}} {{package_name}}
Unlink a package from the current project:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
oneLiner
View Details ▼
oneLiner
Turn plain English into shell commands using OpenAI, Claude, or local LLMs, designed to teach, not replace your knowledge.
oneliner "{{find all jpg files larger than 10MB}}"
Generate a shell command from plain English:
oneliner {{[-e|--explain]}} "{{delete node_modules recursively}}"
Explain what a command does:
oneliner {{[-c|--clipboard]}} "{{compress all pdfs}}"
Copy a generated command to the clipboard:
mono
View Details ▼
mono
Runtime for the .NET Framework.
mono --debug {{path/to/program.exe}}
Run a .NET assembly in debug mode:
mono {{path/to/program.exe}}
Run a .NET assembly:
lib
View Details ▼
lib
The Microsoft Library Manager for creating and managing static libraries of object files.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
Create a static library from object files:
lib /LIST {{path\to\library.lib}}
List the contents of a library:
lib {{path\to\library.lib}} {{path\to\file.obj}}
Add an object file to an existing library:
