| Crates.io | rpsn |
| lib.rs | rpsn |
| version | 2025.12.4 |
| created_at | 2025-12-25 16:09:46.652749+00 |
| updated_at | 2025-12-27 14:13:22.635896+00 |
| description | A command-line interface for Repsona task management system. |
| homepage | |
| repository | https://github.com/f4ah6o/rpsn |
| max_upload_size | |
| id | 2004707 |
| size | 302,904 |
A command-line interface for Repsona task management system.
git clone https://github.com/your-org/rpsn.git
cd rpsn
cargo build --release
cp target/release/rpsn ~/.local/bin/
rpsn config init
rpsn config set --space YOUR_SPACE_ID --token YOUR_API_TOKEN
You can find your Space ID and API Token in Repsona's settings page.
rpsn config whoami
| Option | Description |
|---|---|
--space <id> |
Override Repsona Space ID |
--token <token> |
Override API Token |
--profile <name> |
Use specific config profile |
--json |
Output as JSON |
--dry-run |
Show request only, don't execute |
--yes |
Skip confirmation prompts |
--trace |
Show HTTP trace for debugging |
rpsn util version # Show version information
rpsn util help # Show help
rpsn util ping # Ping the API to verify connection
rpsn config init # Initialize configuration
rpsn config get # Show current configuration
rpsn config set --space <id> --token <token> # Set credentials
rpsn config set-profile <name> --space <id> --token <token> # Create named profile
rpsn config use <name> # Switch to profile
rpsn config whoami # Show current user information
rpsn me get # Get your user information
rpsn me update # Update your profile
rpsn me tasks # List your tasks
rpsn me tasks-responsible # List tasks you're responsible for
rpsn me tasks-ball-holding # List tasks you're holding the ball for
rpsn me tasks-following # List tasks you're following
rpsn me tasks-count # Get your task count
rpsn me projects # List your projects
rpsn me activity # Get your activity log
rpsn project list # List all projects
rpsn project get <project_id> # Get project details
rpsn project create --name <name> # Create a new project
rpsn project update <project_id> --name <name> # Update project
rpsn project members-list <project_id> # List project members
rpsn project members-add <project_id> --user <id> # Add member to project
rpsn project members-remove <project_id> --user <id> # Remove member from project
rpsn project activity <project_id> # Get project activity
rpsn project status-list <project_id> # List project statuses
rpsn project milestone-list <project_id> # List project milestones
rpsn task list <project_id> # List tasks in project
rpsn task get <project_id> <task_id> # Get task details
rpsn task create <project_id> --title <title> # Create a task
rpsn task update <project_id> <task_id> --title <t> # Update task
rpsn task done <project_id> <task_id> # Mark task as done
rpsn task reopen <project_id> <task_id> # Reopen task
rpsn task children <project_id> <task_id> # List subtasks
rpsn task comment-list <project_id> <task_id> # List task comments
rpsn task comment-add <project_id> <task_id> --comment <text> # Add comment
rpsn task activity <project_id> <task_id> # Get task activity
rpsn task history <project_id> <task_id> # Get task history
rpsn note list <project_id> # List notes in project
rpsn note get <project_id> <note_id> # Get note details
rpsn note create <project_id> --name <name> # Create a note
rpsn note update <project_id> <note_id> --name <n> # Update note
rpsn note delete <project_id> <note_id> # Delete note
rpsn note children <project_id> <note_id> # List subnotes
rpsn note comment-list <project_id> <note_id> # List note comments
rpsn note comment-add <project_id> <note_id> --comment <text> # Add comment
rpsn note comment-update <project_id> <note_id> <comment_id> --comment <text>
rpsn note comment-delete <project_id> <note_id> <comment_id>
rpsn note activity <project_id> <note_id> # Get note activity
rpsn note history <project_id> <note_id> # Get note history
rpsn file upload <project_id> <path> # Upload file to project
rpsn file download --hash <hash> --out <path> # Download file
rpsn file attach <project_id> --model task --id <id> --file <file_id>
rpsn file detach <project_id> --model task --id <id> --file <file_id>
rpsn file delete <file_id> # Delete file
# Tags
rpsn tag list # List all tags
# Inbox
rpsn inbox list # List inbox items
rpsn inbox update <inbox_id> # Update inbox item
rpsn inbox read-all # Mark all as read
rpsn inbox unread-count # Get unread count
# Space
rpsn space get # Get space information
rpsn space invite --email <email> # Invite user to space
# Users
rpsn user list # List all users
rpsn user get <user_id> # Get user details
rpsn user role-set <user_id> --role <role> # Set user role
rpsn user payment-set <user_id> --type <type> # Set payment type
rpsn user activity <user_id> # Get user activity
# Webhooks
rpsn webhook list # List webhooks
rpsn webhook create --name <n> --url <u> --events <e> # Create webhook
rpsn webhook update <id> --name <name> # Update webhook
rpsn webhook delete <id> # Delete webhook
# ID Links
rpsn idlink list # List ID links
rpsn idlink create --name <name> --url <url> # Create ID link
rpsn idlink delete <id> # Delete ID link
# Generate completion script
rpsn completion bash # For Bash
rpsn completion zsh # For Zsh
rpsn completion fish # For Fish
rpsn completion elvish # For Elvish
rpsn completion powershell # For PowerShell
# Install (Bash)
rpsn completion bash > ~/.local/share/bash-completion/completions/rpsn
# Install (Zsh)
rpsn completion zsh > ~/.zsh/completion/_rpsn
# Install (Fish)
rpsn completion fish > ~/.config/fish/completions/rpsn.fish
Generate a skill file for AI assistants:
rpsn skill-generate # Generate to default location
rpsn skill-generate --output ./SKILL.md # Generate to custom path
Configuration is stored in ~/.config/rpsn/config.toml.
[default]
space_id = "your-space-id"
api_token = "your-api-token"
[work]
space_id = "work-space-id"
api_token = "work-api-token"
[personal]
space_id = "personal-space-id"
api_token = "personal-api-token"
| Variable | Description |
|---|---|
REPSONA_SPACE |
Override Space ID |
REPSONA_TOKEN |
Override API Token |
rpsn task create 123 \
--title "Implement login feature" \
--description "Add OAuth2 login support" \
--priority 3 \
--assignee 456 \
--tags "feature,auth"
rpsn --json task list 123
rpsn --dry-run task create 123 --title "Test task"
rpsn --trace task get 123 456
rpsn --profile work project list
--trace to debug API issuesMIT License. See LICENSE for details.