Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/nasty-facts-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rapid-lions-jump.md

This file was deleted.

8 changes: 4 additions & 4 deletions docs/commands/oc-skills-clear-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
> #### Clear the skills cache (skills will be re-downloaded on next install).

```term
$ xano oc skills clear-cache [options]
$ caly-xano oc skills clear-cache [options]
```

### oc skills clear-cache --help
```term
$ xano oc skills clear-cache --help
$ caly-xano oc skills clear-cache --help
Clear the skills cache (skills will be re-downloaded on next install).

Usage: xano oc skills clear-cache [options]
Usage: caly-xano oc skills clear-cache [options]

Options:
└─ -h, --help display help for command

Run 'xano <command> --help' for detailed usage.
Run 'caly-xano <command> --help' for detailed usage.
https://github.com/calycode/xano-tools | https://links.calycode.com/discord
```
8 changes: 4 additions & 4 deletions docs/commands/oc-skills-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> #### Install or reinstall Xano skills for AI agents.

```term
$ xano oc skills install [options]
$ caly-xano oc skills install [options]
```
### Options

Expand All @@ -12,15 +12,15 @@ $ xano oc skills install [options]

### oc skills install --help
```term
$ xano oc skills install --help
$ caly-xano oc skills install --help
Install or reinstall Xano skills for AI agents.

Usage: xano oc skills install [options]
Usage: caly-xano oc skills install [options]

Options:
├─ -f, --force Force overwrite existing skills
└─ -h, --help display help for command

Run 'xano <command> --help' for detailed usage.
Run 'caly-xano <command> --help' for detailed usage.
https://github.com/calycode/xano-tools | https://links.calycode.com/discord
```
8 changes: 4 additions & 4 deletions docs/commands/oc-skills-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
> #### Show the status of installed skills.

```term
$ xano oc skills status [options]
$ caly-xano oc skills status [options]
```

### oc skills status --help
```term
$ xano oc skills status --help
$ caly-xano oc skills status --help
Show the status of installed skills.

Usage: xano oc skills status [options]
Usage: caly-xano oc skills status [options]

Options:
└─ -h, --help display help for command

Run 'xano <command> --help' for detailed usage.
Run 'caly-xano <command> --help' for detailed usage.
https://github.com/calycode/xano-tools | https://links.calycode.com/discord
```
8 changes: 4 additions & 4 deletions docs/commands/oc-skills-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
> #### Update skills by fetching the latest versions from GitHub.

```term
$ xano oc skills update [options]
$ caly-xano oc skills update [options]
```

### oc skills update --help
```term
$ xano oc skills update --help
$ caly-xano oc skills update --help
Update skills by fetching the latest versions from GitHub.

Usage: xano oc skills update [options]
Usage: caly-xano oc skills update [options]

Options:
└─ -h, --help display help for command

Run 'xano <command> --help' for detailed usage.
Run 'caly-xano <command> --help' for detailed usage.
https://github.com/calycode/xano-tools | https://links.calycode.com/discord
```
8 changes: 4 additions & 4 deletions docs/commands/oc-skills.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
> #### Manage Xano skills for AI agents (database optimization, security, best practices).

```term
$ xano oc skills [options]
$ caly-xano oc skills [options]
```

### oc skills --help
```term
$ xano oc skills --help
$ caly-xano oc skills --help
Manage Xano skills for AI agents (database optimization, security, best practices).

Usage: xano oc skills [options] [command]
Usage: caly-xano oc skills [options] [command]

Options:
└─ -h, --help display help for command
Expand All @@ -23,6 +23,6 @@ Commands:
├─ clear-cache Clear the skills cache (skills will be re-downloaded on n...
└─ help display help for command

Run 'xano <command> --help' for detailed usage.
Run 'caly-xano <command> --help' for detailed usage.
https://github.com/calycode/xano-tools | https://links.calycode.com/discord
```
70 changes: 35 additions & 35 deletions docs/guides/git-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,18 +237,18 @@ jobs:
with:
node-version: '20'

- name: Install Xano CLI
run: npm install -g @calycode/cli

- name: Generate Repository
env:
XANO_TOKEN_PRODUCTION: ${{ secrets.XANO_TOKEN }}
run: |
caly-xano generate repo \
--instance production \
--workspace main \
--branch live \
--fetch
- name: Install Xano CLI
run: npm install -g @calycode/cli

- name: Generate Repository
env:
XANO_TOKEN_PRODUCTION: ${{ secrets.XANO_TOKEN }}
run: |
caly-xano generate repo \
--instance production \
--workspace main \
--branch live \
--fetch

- name: Check for Changes
id: changes
Expand Down Expand Up @@ -287,22 +287,22 @@ jobs:
with:
node-version: '20'

- name: Install Xano CLI
run: npm install -g @calycode/cli

- name: Run Tests
env:
XANO_TOKEN_STAGING: ${{ secrets.XANO_TOKEN_STAGING }}
XANO_TEST_EMAIL: ${{ secrets.TEST_EMAIL }}
XANO_TEST_PASSWORD: ${{ secrets.TEST_PASSWORD }}
run: |
caly-xano test run \
-c ./tests/config.json \
--instance staging \
--workspace main \
--branch staging \
--all \
--ci
- name: Install Xano CLI
run: npm install -g @calycode/cli

- name: Run Tests
env:
XANO_TOKEN_STAGING: ${{ secrets.XANO_TOKEN_STAGING }}
XANO_TEST_EMAIL: ${{ secrets.TEST_EMAIL }}
XANO_TEST_PASSWORD: ${{ secrets.TEST_PASSWORD }}
run: |
caly-xano test run \
-c ./tests/config.json \
--instance staging \
--workspace main \
--branch staging \
--all \
--ci
```

### Documentation Deployment
Expand All @@ -325,13 +325,13 @@ jobs:
with:
node-version: '20'

- name: Install Xano CLI
run: npm install -g @calycode/cli
- name: Install Xano CLI
run: npm install -g @calycode/cli

- name: Generate Documentation
env:
XANO_TOKEN_PRODUCTION: ${{ secrets.XANO_TOKEN }}
run: caly-xano generate docs
- name: Generate Documentation
env:
XANO_TOKEN_PRODUCTION: ${{ secrets.XANO_TOKEN }}
run: caly-xano generate docs

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down Expand Up @@ -437,7 +437,7 @@ Before merging:

| Issue | Solution |
| ----------------------- | --------------------------------------- |
| "Instance not found" | Run `caly-xano init` to configure |
| "Instance not found" | Run `caly-xano init` to configure |
| "Authentication failed" | Check `XANO_TOKEN_*` env vars |
| Merge conflicts in JSON | Regenerate from Xano, resolve manually |
| Missing XanoScript | Ensure Xano 2.0+ for XanoScript support |
Expand Down
Loading