Agent skills for the Datalayer platform, automatically discovered by agent-skills via Python entrypoints.
pip install datalayer_skillsOnce installed, agent-skills discovers the skills in this package
automatically — no configuration needed.
| Skill | Description |
|---|---|
| whoami | Query the authenticated user's profile from Datalayer IAM |
This package registers itself via the agent_skills.skills entrypoint group
in pyproject.toml:
[project.entry-points."agent_skills.skills"]
whoami = "datalayer_skills.skills.whoami"When AgentSkillsToolset initialises it scans installed packages for this
entrypoint group and loads each skill module automatically.
# Install in editable mode
pip install -e ".[test]"
# Run tests
pytest