Atlassian Forge Skills supports Atlassian Forge, a platform for building and deploying apps that extend products such as Jira and Confluence. Its skills and MCP-backed tools help coding agents create Forge apps, review them before deployment, optimize usage, troubleshoot failures, and work with Forge APIs and the Atlassian Design System.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/atlassian/forge-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/atlassian/forge-skills/egress-url-entries)<a href="https://agentmods.dev/rules/atlassian/forge-skills/egress-url-entries"><img src="https://agentmods.dev/badge/rules/atlassian/forge-skills/egress-url-entries/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/atlassian/forge-skills/egress-url-entries"><img src="https://agentmods.dev/badge/rules/atlassian/forge-skills/egress-url-entries.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00009 | $0.01076 |
| Opus 5 | $0.00005 | $0.00538 |
| Sonnet 5 | $0.00002 | $0.00215 |
| Haiku 4.5 | $0.00001 | $0.00108 |
Grade A, and why
egress-url-entries scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Context
- Forge apps are only permitted to
fetch()or otherwise access domains declared in their manifest for this purpose - Network requests are actively blocked if the target domain does not match an entry in this list
- The app manifest allows entries to specify not just a domain, but a full URI with protocol and path
- There is divergent behavior between frontend and backend Forge app code:
- On frontend: the target URI must fully match an entry in the list
- On backend: the target domain, NOT the target URI, must match a domain in the list
- Entries that specify a protocol and path will only match the domain, the rest is ignored
- Some apps rely on this permission list to skip input validation when dynamically constructing URIs in a request
- Since the behavior is unexpectedly less restrictive in the backend context, some network requests that the app expects are impossible may be allowed
- This issue presents an easy way for an app to incorrectly prevent SSRF and SSRF-like VULNs
Scope & Signals
- Manifest location:
permissions.external - Risk indicators:
- Any of the entries under this manifest key specify a URL protocol or URL path
Detection Process
1. Extract all `address` keys from any of the transitive subkeys of this manifest path
2. For each address:
- Check if the address specifies a URI protocol string
- Check if the address specifies a URI path
- Check if the address specifies a URI query string
3. For each address that meets any of these conditions:
- Check if the domain from this URI is mentioned in a `fetch()` call or other network access (i.e. referenced in an html or JSX/TSX element attribute, XMLHTTPRequest, etc.)
- Check if this fetch call parameterizes the URI path
- Check if the parameterization is demonstrably static or not
- If static, this is safe. If there is ANY doubt if the parameterization originates from dynamic user input, this is not demonstrably safe.
4. Each address that meets any of the conditions in (3) is a likely detection
Analysis Patterns
permissions:
external:
images:
- address: https://image.example.net/foo/commons/2/20/image.jpg
- address: https://image.example.net/foo/commons/2/20/image1.jpg
- address: ftp://an.example.domain.net/some/example/path.txt
- address: example-proto://an.example.domain.net/some/example/path.txt
// Search for fetch calls relying on permissions entries with URI protocols or paths
// An example of a fetch call expecting the path to be checked
const result = await fetch(
`https://image.example.net/foo/commons/2/20/${image_name}.jpg`
);
// An example of a fetch call that expects the protocol to be verified
const result = await fetch(
`${selected_protocol}://an.example.domain.net/some/example/path.txt`
);
// An example of a SAFE parameterized fetch:
if (selected_protocol == 'ftp' || selected_protocol == 'http') {
// The interpolated string has been explicitly checked, instead of relying on the manifest entries
const result = await fetch(
`${selected_protocol}://an.example.domain.net/some/example/path.txt`
);
}
// This is also a safe usage
if (selected_protocol != 'ftp') {
throw new Error('');
}
// Because if the selected_protocol is not 'ftp', an exception is thrown and this is never reached
const result = await fetch(
`${selected_protocol}://an.example.domain.net/some/example/path.txt`
);
// If validation would not filter out at least one of the possible values disallowed by the manifest, then it is
// insufficient, and still indicates a likely reliance on the misunderstood behavior
// An example of a SAFE usage
// This usage is SAFE because no part of the protocol or path was parameterized, so the egress list is not
// relied on
// Note that this is not actually an interpolation, though it appears to be at first glance
() => {
return (
<>
<img src={'https://image.example.net/foo/commons/2/20/${image_name}.jpg'}>
</>
);
};
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 109 lines · 9 tokens per session scan A 903c8d58497d
egress-url-entries is a cursor rule published in the GitHub repository atlassian/forge-skills (22 stars, last pushed 2d ago), licensed Apache-2.0. It adds 9 tokens to every session and 1,076 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
ponytail
Ponytail, lazy senior dev mode. Always pick the simplest solution that works.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.
control-plane-descriptors
Control plane descriptor and instance implementation patterns.