@sascha384/tic 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +17 -63
- package/drizzle/0000_next_vance_astro.sql +183 -0
- package/drizzle/meta/0000_snapshot.json +1188 -0
- package/drizzle/meta/_journal.json +13 -0
- package/package.json +2 -1
- package/skills/config/SKILL.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sascha384/tic",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Terminal UI for issue tracking",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
+
"drizzle",
|
|
11
12
|
"README.md",
|
|
12
13
|
".claude-plugin",
|
|
13
14
|
".mcp.json",
|
package/skills/config/SKILL.md
CHANGED
|
@@ -16,7 +16,7 @@ Creates a `.tic/` directory in the current project. Call this first if other too
|
|
|
16
16
|
### get_config
|
|
17
17
|
|
|
18
18
|
Returns project configuration:
|
|
19
|
-
- `backend` — current backend type (
|
|
19
|
+
- `backend` — current backend type (none, github, gitlab, azure, jira)
|
|
20
20
|
- `statuses` — available status values
|
|
21
21
|
- `types` — available work item types
|
|
22
22
|
- `iterations` — configured iterations
|
|
@@ -27,7 +27,7 @@ Returns project configuration:
|
|
|
27
27
|
|
|
28
28
|
### set_backend
|
|
29
29
|
|
|
30
|
-
Switch between backends: `
|
|
30
|
+
Switch between backends: `none`, `github`, `gitlab`, `azure`, `jira`.
|
|
31
31
|
|
|
32
32
|
The backend is auto-detected from git remotes, but can be overridden.
|
|
33
33
|
|