Install
$ agentstack add skill-p2ergmbh-agentic-coding-project-setup ✓ 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 Used
- ✓ 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
Project & Agent Setup Workflow
This skill is used to initialize or update a project's settings, define stakeholders for automated agent notifications/@mentions, configure environment variables (.env), and generate matching MCP server configurations for the user's chosen agentic CLI.
Trigger
Use this skill when:
- Setting up a new repository with this agentic ruleset.
- The user asks to "configure the project", "setup the agents", "run project setup", or "setup mcp servers".
- An agent detects that both the
package.json"agents"block anddocs/project.jsonare missing or incomplete during startup checks.
Phase 1: Stakeholder & Project Configuration (package.json or docs/project.json)
The single source of truth for repository details and stakeholder GitHub usernames for mentions and reviews is stored in the package.json file under the "agents" configuration key. If package.json is missing or uninitialized, the workflow automatically falls back to docs/project.json.
1.1 Checked Configuration Schema
Every agent session must verify if package.json (under "agents") or docs/project.json exists. The expected schema structure is:
{
"projectName": "your-project-name",
"organization": "your-github-org",
"repository": "your-github-repo",
"stakeholders": {
"productManager": "@pm-github-username",
"seniorDeveloper": "@senior-dev-username",
"qaLead": "@qa-lead-username",
"techArchitect": "@architect-username"
},
"environments": {
"production": "https://your-domain.com",
"development": "https://dev.your-domain.com",
"localPort": 6767
}
}
1.2 Interactive Setup Script
To easily create or update this file without manual JSON editing, run the bundled interactive setup script:
npx node .agents/skills/project-setup/scripts/setup.js
Phase 2: Environment Credentials
During the setup process, the user is prompted for their API tokens. These are written directly to .env or .env.local to enable seamless integration with Figma and GitHub REST APIs:
GITHUB_TOKEN: Personal access token withrepoandworkflowscopes (required forghCLI and git automation).FIGMA_TOKEN: Personal access token (required for Figma Developer MCP to parse frames).
Phase 3: MCP Server Configuration
Depending on the user's preferred agentic CLI, the setup script generates and places the correct MCP server configuration file:
3.1 Antigravity CLI (agy) & Gemini CLI
- Location:
.agents/mcp_config.json - Stores custom tools like
chrome-devtools,figma-developer-mcp, andgithub-mcp.
3.2 Cline (VS Code Extension)
- Location:
.vscode/cline_mcp_settings.json - Configures local node/npm tools to be visible within Cline's active session.
3.3 Qwen CLI
- Location:
.qwen/settings.json - Configures workspace settings, permissions, Gemini model providers, and MCP servers.
3.4 OpenCode
- Location:
.opencode/settings.json - Configures workspace settings, permissions, Gemini model providers, and MCP servers.
Phase 4: Verification
At the end of the setup flow, the setup script:
- Validates that the configuration database (package.json or project.json) is well-formed.
- Checks if
gh auth statusis authenticated (if a token was provided). - Verifies that the
.envfile contains the required variables. - Outputs instructions on how to load/reload MCP servers in the user's chosen CLI.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: P2ERGmbH
- Source: P2ERGmbH/agentic-coding
- 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.