Install
$ agentstack add skill-neuroanalytics-data-science-harness-datalad-credentials ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
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 →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
- 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.
- Check existing credentials — list what is already stored:
``bash datalad credentials ``
Storing a credential
- Set a credential by name:
``bash datalad credentials set `` DataLad prompts interactively for the secret. Use a descriptive name, e.g.:
github-patfor a GitHub personal access tokenosf-tokenfor an OSF tokens3-mybucketfor 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 ``
- 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
- Get/verify a stored credential:
``bash datalad credentials get ``
- 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 getonly
to verify a credential exists, not to echo the secret to the terminal.
- Always use
datalad credentials setfor 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.
- Author: neuroanalytics
- Source: neuroanalytics/data-science-harness
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.