Skip to content

Commit 48d3263

Browse files
committed
add tank.json and deploy workflow for tankpkg publishing
1 parent eb5294b commit 48d3263

2 files changed

Lines changed: 37 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy Tank Skill
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Install Tank CLI
13+
run: sudo curl -fsSL https://raw.githubusercontent.com/tankpkg/tank/main/install.sh | sudo sh
14+
- name: Publish to Tank Registry
15+
env:
16+
TANK_TOKEN: ${{ secrets.TANK_TOKEN }}
17+
run: tank publish

tank.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "@uriva/agentdocs",
3+
"version": "1.0.0",
4+
"repository": "https://github.com/uriva/agentdocs",
5+
"description": "End-to-end encrypted JSON documents for AI agents — store, retrieve, and share via safescript.",
6+
"visibility": "public",
7+
"skills": {
8+
"agentdocs": "skill/SKILL.md"
9+
},
10+
"permissions": {
11+
"network": {
12+
"outbound": ["agentdocs-api.uriva.deno.net"]
13+
},
14+
"filesystem": {
15+
"read": [],
16+
"write": []
17+
},
18+
"subprocess": false
19+
}
20+
}

0 commit comments

Comments
 (0)