You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+7-13Lines changed: 7 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
.PHONY: help install test test-unit test-integration test-coverage lint format format-check clean build publish publish-test release version set-version
1
+
.PHONY: help install test test-unit test-integration test-coverage lint format format-check clean build publish publish-test push-version-tag version set-version
2
2
3
3
# Default target
4
4
help:
@@ -18,7 +18,7 @@ help:
18
18
@echo " publish Publish to PyPI"
19
19
@echo " publish-test Publish to TestPyPI"
20
20
@echo " set-version Set version in all files (requires VERSION=x.y.z)"
21
-
@echo "release Create GitHub release using current version"
21
+
@echo "push-version-tag Create and push git tag using current version"
22
22
@echo " version Show current version"
23
23
24
24
# Install with test dependencies
@@ -100,8 +100,8 @@ set-version:
100
100
echo"Version updated to $(VERSION) in all files";\
101
101
echo"Review changes and commit with: git add -A && git commit -m 'chore: bump version to $(VERSION)'"
102
102
103
-
# Create GitHub release using version from code
104
-
release:
103
+
# Create and push git tag using version from code
104
+
push-version-tag:
105
105
@echo "Checking version consistency...";\
106
106
INIT_VERSION=$$(uv run python -c "from src.asta import __version__; print(__version__)"); \
Copy file name to clipboardExpand all lines: skills/asta-documents/SKILL.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
---
2
-
name: asta-documents
3
-
description: Local document metadata index for files used by Asta skills and tools
2
+
name: Asta Library
3
+
description: Local document metadata index for files used by Asta skills and tools. Use this skill when the user asks to store a document "in Asta" or retrieve "from Asta". Use it when the
4
+
user references an "Asta document" or anything with an `asta://` URI.
4
5
allowed-tools:
5
6
- Bash(asta documents *)
6
7
- Read(*)
@@ -10,9 +11,6 @@ allowed-tools:
10
11
11
12
# Asta Documents Management
12
13
13
-
Use this skill when the user asks to store a document "in Asta" or retrieve "from Asta". Use it when the
14
-
user references an "Asta document" or anything with an `asta://` URI.
15
-
16
14
This skill provides complete document management functionality for tracking research papers, documentation, and resources using the `asta documents` CLI.
17
15
18
16
**What it does:** Track document metadata (URLs, summaries, tags) in a local index. Think of it as a smart bookmark manager with powerful search capabilities.
0 commit comments