yarn add eslint babel-eslint -D
./node_modules/.bin/eslint --init
| [ | |
| { | |
| "name": "Air Force blue", | |
| "value": "#5d8aa8" | |
| }, | |
| { | |
| "name": "Alice blue", | |
| "value": "#f0f8ff" | |
| }, | |
| { |
| // Get country codes & flag of countries with respect to country codes | |
| const fetch = require("node-fetch"); | |
| const NEW_LINES = `\n\n`; | |
| const EMOJIS = `${NEW_LINES}😀 😃 😄 😁 😆 😅 😂 🤣 ☺️ 😊 😇 🙂 🙃 😉 😌 😍 😘 😗 😙 😚 😋 😜 😝 😛 🤑 🤗 🤓 😎 🤡 🤠 😏 😒 😞 😔 😟 😕 🙁 ☹️ 😣 😖 😫 😩 😤 😠 😡 😶 😐 😑 😯 😦 😧 😮 😲 😵 😳 😱 😨 😰 😢 😥 🤤 😭 😓 😪 😴 🙄 🤔 🤥 😬 🤐 🤢 🤧 😷 🤒 🤕 😈 👿 👹 👺 💩 👻 💀 ☠️ 👽 👾 🤖 🎃 😺 😸 😹 😻 😼${NEW_LINES}`; | |
| const FIXER_URI = "https://api.fixer.io/latest"; | |
| const REST_COUNTRIES_URI = "https://restcountries.eu/rest/v2/alpha/"; | |
| const COUNTRY_URI = "http://country.io/currency.json"; | |
| let currencyCodes = []; | |
| let currencyOfCountry = []; | |
| const flagsWithCurrencies = {}; |
| [...document.querySelectorAll('.btn.btn-sm.js-toggler-target')].map(a => a.click()) |
| class Form extends React.Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| name: "", | |
| email: "", | |
| }; | |
| } | |
| _storeInput = (key, value) => { |
Watch the video for which tasks to automate
| // Add script in console. | |
| // var _cScript = document.createElement('script');_cScript.src='../../../tools/custom.js';document.head.appendChild(_cScript); | |
| // ================================================== | |
| function sequenceClass() { | |
| this.init = function () { | |
| var tClass = document.getElementsByClassName('t'); | |
| for (var i = 0; i < tClass.length; i++) { | |
| tClass[i].style.boxShadow = '0px 0px 10px 2px #000000'; | |
| tClass[i].setAttribute('aria-hidden', 'true'); | |
| tClass[i].onclick = mouseEvent; |
| import { relations, sql } from "drizzle-orm" | |
| import { index, integer, sqliteTable, text } from "drizzle-orm/sqlite-core" | |
| import { ulid } from "ulidx" | |
| export const affiliatesTable = sqliteTable( | |
| "affiliate", | |
| { | |
| id: text("id") | |
| .primaryKey() | |
| .$defaultFn(() => ulid()), |
<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>
<general_guidelines>
Prompts to recreate each piece of the OpenClaw system. Use these with any AI coding assistant.
1. Personal CRM "Build a personal CRM that automatically scans my Gmail and Google Calendar to discover contacts from the past year. Store them in a SQLite database with vector embeddings so I can query in natural language ('who do I know at NVIDIA?' or 'who haven't I talked to in a while?'). Auto-filter noise senders like marketing emails and newsletters. Build profiles for each contact with their company, role, how I know them, and our interaction history. Add relationship health scores that flag stale relationships, follow-up reminders I can create, snooze, or mark done, and duplicate contact detection with merge suggestions. Link relevant documents from Box to contacts so when I look up a person, I also see related docs."
2. Meeting Action Items (Fathom)