AgentStack
SKILL verified MIT Self-run

Datalad Credentials

skill-neuroanalytics-data-science-harness-datalad-credentials · by neuroanalytics

>

No reviews yet
0 installs
1 views
0.0% view→install

Install

$ agentstack add skill-neuroanalytics-data-science-harness-datalad-credentials

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-neuroanalytics-data-science-harness-datalad-credentials)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Datalad Credentials? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: datalad-credentials

Configure credentials that DataLad needs to authenticate with remote storage (GitHub, OSF, S3, WebDAV, HTTP). Credentials are stored in the system keyring and retrieved automatically during datalad push, datalad get, and sibling operations.

Steps

Identifying the needed credential

  1. Determine the remote type from the error or user's description:
  • GitHub / GitLab / Gitea → personal access token (PAT) or SSH key
  • OSF (Open Science Framework) → OSF token
  • S3 / AWS → access key + secret key
  • WebDAV / HTTP → username + password
  • Figshare → API token
  • GIN (G-Node Infrastructure) → SSH key pair (no PAT equivalent for annex operations).

Generate a key with ssh-keygen and add the public key to your GIN account at gin.g-node.org → Settings → SSH Keys. DataLad uses the SSH key automatically — no datalad credentials set step is needed for GIN.

  1. Check existing credentials — list what is already stored:

``bash datalad credentials ``

Storing a credential

  1. Set a credential by name:

``bash datalad credentials set `` DataLad prompts interactively for the secret. Use a descriptive name, e.g.:

  • github-pat for a GitHub personal access token
  • osf-token for an OSF token
  • s3-mybucket for S3 credentials

For S3 credentials (requires both key and secret): ``bash datalad credentials set s3-mybucket --field key_id= # DataLad then prompts for the secret key ``

  1. Environment variable alternative — for CI/CD or temporary use, credentials can

be passed via environment variables without storing in the keyring: ``bash DATALAD_CREDENTIAL__TOKEN= datalad push --to ` The variable name is uppercase with underscores. For S3: `bash DATALAD_CREDENTIAL_S3_MYBUCKET_KEY_ID= DATALAD_CREDENTIAL_S3_MYBUCKET_SECRET_ID= ``

Verifying and removing credentials

  1. Get/verify a stored credential:

``bash datalad credentials get ``

  1. Remove a credential:

``bash datalad credentials remove ``

Linking credentials to a sibling

After storing a credential, tell the sibling to use it:

datalad siblings configure --name  --set-property credential 

Common authentication errors and fixes

| Error | Likely cause | Fix | |-------|--------------|-----| | 403 Forbidden on push | PAT lacks write permission | Regenerate token with repo scope | | Authentication failed | Wrong credential name | Run datalad credentials to check stored names | | credential not found | Credential not set | Run datalad credentials set | | git-annex: S3 error | Missing S3 credential | Set both key_id and secret via datalad credentials set |

Constraints

  • Never display a credential secret in plain text — use datalad credentials get only

to verify a credential exists, not to echo the secret to the terminal.

  • Always use datalad credentials set for interactive storage — never write secrets

to .datalad/config, .git/config, or any tracked file.

  • For GitHub siblings, prefer HTTPS PAT over SSH if the user has not set up SSH keys —

it is simpler to configure with datalad credentials set.

  • Always check datalad credentials (list) before asking the user to set credentials —

the credential may already exist under a different name.

  • For rclone-based special remotes (git-annex-remote-rclone), credentials are managed

via rclone config, not datalad credentials — these are entirely separate systems. Direct the user to rclone config for rclone remote authentication.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.