ワンクリックで
function-config-warning-once
Warn once per function run when optional URL configuration is missing, while keeping a safe fallback path.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Warn once per function run when optional URL configuration is missing, while keeping a safe fallback path.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Authorization Code Flow for web applications using MSAL.NET confidential client to sign in users and access APIs on their behalf
Handle MSAL distributed token cache collisions and stale entries in ASP.NET Core applications
On-Behalf-Of (OBO) Flow for web APIs to call downstream APIs while preserving user identity in MSAL.NET
{what this skill teaches agents}
Review API DTO implementations for contract/domain separation, mapping patterns, and REST compliance
This skill should be used when the user asks to "build a feature", "fix a bug", "implement something", "start a dev cycle", types "/dev", or describes a software task that requires design, implementation, testing, and shipping. Orchestrates the full software development lifecycle from interrogation through shipping, with self-learning that improves over time.
| name | function-config-warning-once |
| description | Warn once per function run when optional URL configuration is missing, while keeping a safe fallback path. |
| domain | error-handling |
| confidence | high |
| source | earned from issue #893 / PR #910 |
| tools | null |
Use this pattern when a Function depends on optional configuration to build links or other operator-visible output, but can still proceed in a degraded mode.
null, empty, and whitespace-only values as missing configuration.src\JosephGuadagno.Broadcasting.Functions\LinkedIn\NotifyExpiringTokens.cs
GetWebBaseUrl() trims the configured URL, warns once when missing, and
returns string.EmptyRunAsync() resolves the value once and passes it into both notification
windowssrc\JosephGuadagno.Broadcasting.Functions.Tests\LinkedIn\NotifyExpiringTokensTests.cs
RunAsync_WhenWebBaseUrlIsMissingOrEmpty_LogsWarningAndUsesRelativeLink(...)
proves the warning is emitted for null/empty/whitespace settings while
preserving the relative-link fallback