Build Claude skills that actually improve output. Includes a finished example you can use immediately.
New to skills? Read START-HERE.md first (3-minute read).
Write copy that converts. Landing pages, emails, sales copy, headlines, CTAs, social posts β anything persuasive.
This is an AI skill file. It turns any AI into a direct response copywriter trained on the frameworks of Schwartz, Hopkins, Ogilvy, Halbert, Caples, Sugarman, and Collier. Instead of getting generic AI copy, you get internet-native writing that sounds like a smart friend explaining something β while quietly deploying every persuasion principle in the book.
Ads β Landing Page β Email Sequence β Offers
Skills Pack β $199 https://thevibemarketer.com/skills
| # Instance Variable that is undefined | |
| @person&.name # => nil | |
| # Method that returns nil | |
| def person; nil; end | |
| person&.name # => nil | |
| # local variable that is undefined - this is the one I am curious about since it "seems" to break convention | |
| adult&.name # => undefined local variable exception raised |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| file -bI INPUT_FILENAME | cut -d ';' -f 2 | cut -d '=' -f 2 | xargs -I % sh -c 'iconv -f % -t utf-8 INPUT_FILENAME >> OUTPUT_FILENAME' |
| #!/bin/bash | |
| # | |
| # Needs to be saved into your ~/bin directory | |
| # | |
| # Example: git dev my-feature-name | |
| # | |
| # set -e | |
| git checkout -b dev/$1 |
| # Copy this to your ~/.bash_profile | |
| # for git | |
| function parse_git_dirty { | |
| [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
| } | |
| function parse_git_branch { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" | |
| } |
| # ruby 2.5.0p0 (2017-12-25 revision 61468) | |
| class Demo | |
| attr_reader :first_name | |
| def initialize(first_name) | |
| @first_name = first_name | |
| end | |
| def hi(myname = nil) | |
| puts "Hello, #{first_name}" |