Hey, I'm Sprucebot! This CLI was designed to give you the tools you need to begin building skills to help brick-and-mortar businesses thrive in the Internet age.
Our goal is to connect people, not replace them. So make sure your skill promotes human-to-human connection.
First there were desktop applications, then mobile apps, now we are entering the Decade of the Skill
! 💥💥💥
They are the next step in App Evolution
. They are interface agnostic. They react to real world events.
Beyond reacting JUST voice commands (Alexa -COMING SOON-, Google Home -COMING SOON-, HomePod -COMING SOON-). I can chat through pretty much any interface (sms, Facebook Messenger -COMING SOON-, etc.), I know when teammates arrive at work, when guests arrive at local businesses, when business owners ask to borrow a ladder from a neighbor -COMING SOON-, when guests message a business, EVEN WHEN SOMEONE BOOKS A HAIRCUT!! 💇
But, to be clear; I take privacy very seriously and as a Skills Developer, I'm not gonna share much with you. Seriously, all you'll get is the guest's first name and a link to their profile photo in a few sizes. Oh, and you can only access data your skill collects. All data shared between skills is done through the emitting of events.
Anyway, what was I saying before things got all serious?
It's the ultimate social network, and with your skills giving me the power to facilitate amazing experiences, brick-and-mortar, ma and pa shops will live long into the future. 🌲🤖
npm i -g @sprucelabs/sprucebot-cli
Before you build your first Skill, you need to setup a business, lets do that!
- Visit https://platform.spruce.ai and login.
- Scroll to the bottom of the page and tap Add My Location.
- Once your location is created, you can start to dev your first skill!
npm i -g @sprucelabs/sprucebot-cli
cd ~/path/to/dev/folder
sprucebot skill create
- Follow steps and change the world! 💪
- Be sure to select a version that matches 7.4.x (not canary).
This is where the magic happens!
sprucebot skill create
- Downloads the Skills Kit and helps you get your new skill setup
- All subsequent commands require you to be in the skill's directory
sprucebot remote set [prod|alpha|stage|qa|dev|alpha]
- You probably only have access to
prod
- If you wish test skills at
alpha
locations, eg Spruce, email[email protected]
- If you wish to get early access to features on
stage
... you guessed it
- You probably only have access to
sprucebot skill register
- Registers your skill with
remote
- Registers your skill with
sprucebot skill update
- Updates your skill from
package.json#version
tosprucebot-skills-kit@version
- Requires a clean working directory and git repo
- To see what changed, use
git status
- After resolving any conflicts run
yarn install && yarn test
- Updates your skill from
sprucebot skill unregister
-COMING SOON-- Takes your skill entirely off remote
- It will be uninstalled from all locations that had it
- All meta data will be deleted
Requires you to have an account at your chosen remote
(probably platform.spruce.ai).
sprucebot user login
- Log you in and sets you up to dev at a location of your choosing
sprucebot user logout
-COMING SOON-*- Logs you out
When your skill needs to respond to different events (enter, leave), you need to simulate them locally.
cd my-skill-dir
sprucebot simulator start
Once the simulator is running, you can press different keys to simulate events. You'll see when you get there.
This section is only relevant if you've been given permission to work directly on my core systems.
- Access to the platform repositories
- Docker For Mac
- Git
- Postgresql on Host machine
- bash
sprucebot platform install [path]
path
defaults to./sprucebot
-p --platform
to selectweb
,api
, or defaultsall
--s --select-version
to checkout specific versions once cloned-b --branch
the branch to checkout, defaults todev
- REQUIRED You need to fork the following projects:
com-sprucebot-api
com-sprucebot-web
sprucebot-dev-services
sudo sprucebot platform development
- Setup dns and hosts configurations for local development.
- Adds
local.spruce.ai
,local-api.spruce.ai
, andlocal-devtools.spruce.ai
tohosts
sprucebot platform start [key]
- Launches the platform
key
can beall
,web
,api
,relay
- Default to
all
- Visit your local Sprucebot to verify platform is running properly
sudo sprucebot platform logs [key]
key
can beall
,web
,api
,relay
- Default to
all
sprucebot platform version
- Launch the interactive version select prompt
- See CONTRIBUTING for the rules around skill development.