
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@freestyle-sh/fdev-provider-gcloud
Advanced tools
Copy local `gcloud` config/auth files into fdev workspaces.
Copy local gcloud config/auth files into fdev workspaces.
This provider does not own Google OAuth. It requires the developer's local machine to have gcloud installed and authenticated, then copies selected files from the local gcloud config directory into a workspace. This makes normal VM-side commands such as gcloud auth list behave like they do locally.
import { workflow } from "@freestyle-sh/fdev";
import {
copyGcloudConfig,
gcloudConfigCopyInjectionSteps,
gcloudCopiedConfigReadyCommand,
} from "@freestyle-sh/fdev-provider-gcloud";
const app = workflow("example", {
providers: {
gcloudConfig: copyGcloudConfig.provider(),
},
});
// Inside workspace.onOpen:
const gcloudConfigFiles = await providers.gcloudConfig.configFiles();
for (const step of gcloudConfigCopyInjectionSteps(gcloudConfigFiles)) {
await vm.exec(step.command, { name: step.name, env: step.env });
}
const verified = await vm.probe(gcloudCopiedConfigReadyCommand());
if (!verified.ok) throw new Error("gcloud did not accept the copied config files");
If local gcloud is missing, provider startup fails with the Google Cloud SDK install URL. If it is not authenticated, startup asks the user to run gcloud auth login.
FAQs
Copy local `gcloud` config/auth files into fdev workspaces.
We found that @freestyle-sh/fdev-provider-gcloud demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.